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 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 BeforeEndOfGroup: TOleanderEndOfGroupEvent;
The BeforeEndOfGroup event is activated when the OleanderController starts the EndOfGroup method. This event is the first action in EndOfGroup. EndOfGroup is called when the OleandeController wants to determine if the end of the current group is reached.
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 NextGroup operation from occurring.
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 BeforeNextGroup: TOleanderPrintEvent;
The BeforeNextGroup event is activated when the OleanderController starts the NextGroup method. This event is the first action in NextGroup. NextGroup is called when the OleanderController wants to step read the next group.
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 NextGroup 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.