Document Library for UWP | ComponentOne
C1.UWP.Document Assembly / C1.Xaml.Document Namespace / GetPageCompletedEventArgs Class / GetPageCompletedEventArgs Constructor
An index of the page requested in async operation.
A C1Page object representing result of operation.
Any error that occurred during the asynchronous operation.
A value indicating whether the asynchronous operation was canceled.

In This Topic
    GetPageCompletedEventArgs Constructor
    In This Topic
    Initializes a new instance of the GetPageCompletedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal pageIndex As Integer, _
       ByVal page As C1Page, _
       ByVal error As Exception, _
       ByVal cancelled As Boolean _
    )
    public GetPageCompletedEventArgs( 
       int pageIndex,
       C1Page page,
       Exception error,
       bool cancelled
    )

    Parameters

    pageIndex
    An index of the page requested in async operation.
    page
    A C1Page object representing result of operation.
    error
    Any error that occurred during the asynchronous operation.
    cancelled
    A value indicating whether the asynchronous operation was canceled.
    See Also