Reports for WinForms | ComponentOne
C1.Win.C1Report.4 Assembly / C1.Win.C1Preview Namespace / LoadVisitedDocumentEventHandler Delegate
The source of event.
LoadVisitedDocumentEventArgs object containing event data.

In This Topic
    LoadVisitedDocumentEventHandler Delegate
    In This Topic
    Represents a method that can handle the C1PreviewPane.LoadVisitedDocument event on a C1PreviewPane. The handler should load the document from custom user-defined storage.
    Syntax
    'Declaration
     
    Public Delegate Sub LoadVisitedDocumentEventHandler( _
       ByVal sender As Object, _
       ByVal e As LoadVisitedDocumentEventArgs _
    ) 
    public delegate void LoadVisitedDocumentEventHandler( 
       object sender,
       LoadVisitedDocumentEventArgs e
    )

    Parameters

    sender
    The source of event.
    e
    LoadVisitedDocumentEventArgs object containing event data.
    See Also