Reports for WinForms | ComponentOne
C1.C1Report.4 Assembly / C1.C1Preview Namespace / PageEventHandler Delegate
The source of the event.
A PageEventArgs that contains the event data.

In This Topic
    PageEventHandler Delegate
    In This Topic
    Represents a method that can handle page-related events such as C1PrintDocument.PageAdded, C1PrintDocument.PageUpdated, C1PrintDocument.PageChanged and C1PrintDocument.PageDeleted.
    Syntax
    'Declaration
     
    Public Delegate Sub PageEventHandler( _
       ByVal sender As C1PrintDocument, _
       ByVal e As PageEventArgs _
    ) 
    public delegate void PageEventHandler( 
       C1PrintDocument sender,
       PageEventArgs e
    )

    Parameters

    sender
    The source of the event.
    e
    A PageEventArgs that contains the event data.
    See Also