property AfterFormatString: TOleanderFormatStringEvent;
The AfterFormatString event is activated when the OleanderPrinter finishes a call to the FormatString method. This event is the last action before FormatString returns to the caller.
By assigning a method to this property, you can take any special actions required by the event.
property AfterFreeDoc: TNotifyEvent;
The AfterFreeDoc event is activated when the OleanderPrinter finishes a call to the FreeDoc method. This event is the last action before FreeDoc returns to the caller.
By assigning a method to this property, you can take any special actions required by the event.
property AfterInsertText: TOleanderInsertTextEvent;
Description
The AfterInsertText event is activated when the OleanderPrinter finishes a call to the InsertText method. This event is the last action before InsertText returns to the caller.
By assigning a method to this property, you can take any special actions required by the event.
property AfterLoadDoc: TNotifyEvent;
The AfterLoadDoc event is activated when the OleanderPrinter finishes a call to the LoadDoc method. This event is the last action before LoadDoc returns to the caller.
By assigning a method to this property, you can take any special actions required by the event.
property AfterOLECreate: TNotifyEvent;
The AfterOLECreate event is activated when the OleanderPrinter finishes a call to the Open method. This event is the last action before Open returns to the caller.
By assigning a method to this property, you can take any special actions required by the event.
property AfterOLERelease: TNotifyEvent;
The AfterOLERelease event is activated when the OleanderPrinter finishes a call to the Close method. This event is the last action before Close returns to the caller.
By assigning a method to this property, you can take any special actions required by the event.
property AfterPrintDoc: TNotifyEvent;
The AfterPrintDoc event is activated when the OleanderPrinter finishes a call to the PrintDoc method. This event is the last action before PrintDoc returns to the caller.
By assigning a method to this property, you can take any special actions required by the event.
property BeforeFormatString: TOleanderFormatStringEvent;
The BeforeFormatString event is activated when the OleanderPrinter starts the FormatString method. This event is the first action in FormatString.
By assigning a method to this property, you can take any special actions required by the event. By raising an exception in this event handler, you can prevent the FormatString operation from occurring.
property BeforeFreeDoc: TNotifyEvent;
The BeforeFreeDoc event is activated when the OleanderPrinter starts the FreeDoc method. This event is the first action in FreeDoc.
By assigning a method to this property, you can take any special actions required by the event. By raising an exception in this event handler, you can prevent the FreeDoc operation from occurring.
property BeforeInsertText: TOleanderInsertTextEvent;
The BeforeInsertText event is activated when the OleanderPrinter starts the InsertText method. This event is the first action in InsertText.
By assigning a method to this property, you can take any special actions required by the event. By raising an exception in this event handler, you can prevent the InsertText operation from occurring.
property BeforeLoadDoc: TNotifyEvent;
The BeforeLoadDoc event is activated when the OleanderPrinter starts the LoadDoc method. This event is the first action in LoadDoc.
By assigning a method to this property, you can take any special actions required by the event. By raising an exception in this event handler, you can prevent the LoadDoc operation from occurring.
property BeforeOLECreate: TNotifyEvent;
The BeforeOLECreate event is activated when the OleanderPrinter starts the Open method. This event is the first action in Open.
By assigning a method to this property, you can take any special actions required by the event. By raising an exception in this event handler, you can prevent the Open operation from occurring.
property BeforeOLERelease: TNotifyEvent;
The BeforeOLERelease event is activated when the OleanderPrinter starts the Close method. This event is the first action in Close.
By assigning a method to this property, you can take any special actions required by the event. By raising an exception in this event handler, you can prevent the Close operation from occurring.
property BeforePrintDoc: TNotifyEvent;
The BeforePrintDoc event is activated when the OleanderPrinter starts the PrintDoc method. This event is the first action in PrintDoc.
By assigning a method to this property, you can take any special actions required by the event. By raising an exception in this event handler, you can prevent the PrintDoc operation from occurring.
property OnClose: TNotifyEvent;
The OnClose event is activated when the OleanderPrinter finishes a call to the Close method. This event is the last action before Close returns to the caller.
property OnOpen: TNotifyEvent;
The OnOpen event is activated when the OleanderPrinter finishes a call to the Open method. This event is the last action before Open returns to the caller.