PrintDocument for WinForms | ComponentOne
C1.PrintDocument.4.5.2 Assembly / C1.C1Preview Namespace / C1MultiDocument Class / ItemLoaded Event

In This Topic
    ItemLoaded Event (C1MultiDocument)
    In This Topic
    Occurs when a C1MultiDocumentItem has been loaded, parameters (if any) have been prepared, but the report or document represented by the item has not been generated yet. Allows to adjust the properties of the report or document prior to generation (e.g. the data source of a C1Report may be assigned here).
    Syntax
    'Declaration
     
    Public Event ItemLoaded As MultiDocumentItemLoadedEventHandler
    public event MultiDocumentItemLoadedEventHandler ItemLoaded
    Event Data

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

    PropertyDescription
    Gets the report or document represented by the C1MultiDocumentItem.  
    Gets the C1MultiDocumentItem object associated with this event. (Inherited from C1.C1Preview.MultiDocumentItemEventArgs)
    See Also