PrintDocument for WinForms | ComponentOne
C1.PrintDocument.4.5.2 Assembly / C1.C1Preview Namespace / PagesEventHandler Delegate
The source of the event.
A PagesEventArgs that contains the event data.

In This Topic
    PagesEventHandler Delegate
    In This Topic
    Represents a method that can handle page-related events of a C1MultiDocument such as C1MultiDocument.PagesAdded and C1MultiDocument.PagesChanged.
    Syntax
    'Declaration
     
    Public Delegate Sub PagesEventHandler( _
       ByVal sender As C1MultiDocument, _
       ByVal e As PagesEventArgs _
    ) 
    public delegate void PagesEventHandler( 
       C1MultiDocument sender,
       PagesEventArgs e
    )

    Parameters

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