combit List & Label 29 - .NET Help
combit.Reporting Namespace / ListLabel Class / DesignerPrintJob Event


In This Topic
    DesignerPrintJob Event
    In This Topic
    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.
    Syntax
    'Declaration
     
    
    Public Event DesignerPrintJob As DesignerPrintJobHandler
    public event DesignerPrintJobHandler DesignerPrintJob
    public:
    event DesignerPrintJobHandler^ DesignerPrintJob
    Event Data

    The event handler receives an argument of type DesignerPrintJobEventArgs containing data related to this event. The following DesignerPrintJobEventArgs properties provide information specific to this event.

    PropertyDescription
    Handle of a preview control to attach to.  
    Handle of the event to signal once printing has started.  
     
    Action to trigger.  
    Original file name.  
    Maximum page count.  
    Project to print.  
    Return value, e.g. thread state.  
     
    Value set via LlOption.DesignerPreviewParameter.  
    Requirements

    Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
    .NET: .NET Framework 4.8, .NET 6, .NET 7, .NET 8

    See Also