Name | Description | |
---|---|---|
![]() | AutoDefineField | This event is called when using data binding for all automatically declared fields. With the event arguments you can manipulate the name and content or completely prevent the declaration of the element. |
![]() | AutoDefineNewLine | Similar to AutoDefineNewPage, this event is called when printing databound lists for every row of a table before calling LlPrintFields. Here, you can declare additional fields that you would like to use in the table. Make sure that you pass all field names in the form of "<tableid>.<fieldname>" in order to enable List & Label can connect these to their corresponding table (e.g. "Orders.OrderID"). |
![]() | AutoDefineNewPage | The event is triggered for every new page when using data binding. Here, you can register additional required variables for this page. The event is called internally before calling LlPrint. |
![]() | AutoDefineTable | This event is called when using data binding for each automatically declared table. With the event arguments you can completely prevent the declaration of the element. |
![]() | AutoDefineTableRelation | This event is called when using data binding for each automatically declared table relation. Can be used for suppressing the relation. |
![]() | AutoDefineTableSortOrder | This event is called when using data binding for each automatically declared table sort order. With the event arguments you can completely prevent the declaration of the element. |
![]() | AutoDefineVariable | This event is called when using data binding for all automatically declared variables. With the event arguments you can manipulate the name and content or completely prevent the declaration of the element. |
![]() | DatabaseStructureLoadError | |
![]() | DefinePrintOptions | This event can be used to set additional options to be used for print/export. Internally, the event is triggered after the print/export process is started; but before the actual printing starts. This allows you to define various export options using the ExportOptions property or set special print options using LlPrintSetOption and LlPrintOption. |
![]() | DesignerPrintJob | This event is triggered to display the real data preview or export in the Designer. If you use databinding, you don't need to implement a handler for this event - the databinding engine does this automatically for you. See the DesignerPreview-Sample for an example how to implement your own handler for this event. |
![]() | DrawObject | The event DrawObject is called for each object displayed by List & Label. The event arguments provide a Graphics object as well as the rectangle of the object. |
![]() | DrawPage | This event is called in the case of list projects for each displayed page and allows customized drawing with GDI+. |
![]() | DrawProject | With the help of this event, you can print additional drawings and elements for label and card projects. This allows customized printing. For instance, you can apply a watermark from your product's demo version to each print out. |
![]() | DrawTableField | Similar to DrawTableLine, this event can be used to apply a different color to each field of a table. |
![]() | DrawTableLine | This event allows the modification of a table line. In this way, you can, for instance, create a customized colored and, if necessary, an alternating background (which List & Label provides too, but there might be reasons to paint it in this event). |
![]() | EnableMenu | With this event you can indicate which menu items are allowed in the designer. For this, you must use the corresponding Win API functions that can be passed to the menu handle contained in the event arguments. |
![]() | Evaluate | The Designer function External$ allows offering of external functions in the List & Label formula assistant. Whenever the user uses this function, the Evaluate event is called, which evaluates the formula and returns the result or an error message. Usually it is preferable to use the DesignerFunction Class for custom functions. |
![]() | ExpressionError | This event is triggered when an expression error occurs in a project. The passed error texts can be concatenated and then displayed to the user. |
![]() | HandleHyperlinkAction | This event is triggered when hovering or clicking on a link in the preview. |
![]() | ModifyMenu | This event allows modification of List & Label menus. The event arguments are identical to those of EnableMenu. |
![]() | NextCombinationPrintStep | This event is called if AutoProjectFile contains more than one project file separated by semicolons. In this case, a sequence print is triggered and this event allows to change options between two print jobs of the sequence. |
![]() | NotifyFrameHandle | |
![]() | NotifyProgress | This event is triggered by the databinding engine to notify the application of the print progress. It can be used e.g. to refresh a progress meter is a status bar. Be aware that the event might be raised from another thread and synchronize calls to UI elements. |
![]() | PageExported | This event is triggered after a page is exported. |
![]() | PrintingFinished | |
![]() | PrintJobInfo | Can be used to supervise a print job after it is passed to the spooler. |
![]() | ProcessText | This event is called whenever text is printed. Use it for preprocessing, e.g. hyphenation. |
![]() | ProjectLoaded | This event is triggered whenever a project is loaded in the Designer. It allows your application to keep track of the most recently used files. |
![]() | ReportParametersCollected | This event is triggered after all report parameters have been prepared. The available choices may be retrieved, and the parameter values may be changed in this event by using the DOM. |
![]() | ReportParametersCollectionFinished | This event is triggered after all report parameters have been collected and the user has confirmed the selected values. |
![]() | RestoreReportStateItem | |
![]() | SaveFilename | This event will be fired every time a project is saved in the List & Label designer. Thus your application can react if a new project is created or an existing one is saved. |
![]() | SaveReportStateItem | |
![]() | SelectMenu | This event is triggered as soon as a menu or toolbar item is clicked. You have the option to let the call be processed as usual or execute an alternative function. |
![]() | ShowHelp | This event allows the integration of a customized Help system. For this, the event arguments contain the corresponding context ID. If you implement customized Help, you must indicate this to List & Label, so that the internal Help is not displayed. |
![]() | VariableHelpText | You can support your users by displaying help texts for each variable and field. The event is triggered for the corresponding element as soon as the user selects it in the formula assistant and the help text is to be displayed. |
![]() | ViewerActionResult | This event is called when certain actions (print, export, fax, mail) have been executed in the preview window. |
![]() | ViewerButtonClicked | This event is triggered when a button in the preview window is clicked. Here, you have the option to implement the corresponding function by yourself or accept the regular List & Label behavior. |
![]() | ViewerPrint |