FlexReport for WinForms | ComponentOne
C1.Win.C1Document.4.5.2 Assembly / C1.Win.C1Document Namespace / ExecuteActionCompletedEventArgs Class / ExecuteActionCompletedEventArgs Constructor
A C1DocumentAction object defining an action executed in async operation.
A C1BookmarkPosition object defining position in the generated document which should be showed.
Any error that occurred during the asynchronous operation.
A value indicating whether the asynchronous operation was canceled.

In This Topic
    ExecuteActionCompletedEventArgs Constructor
    In This Topic
    Initializes a new instance of the ExecuteActionCompletedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal action As C1DocumentAction, _
       ByVal position As C1BookmarkPosition, _
       ByVal error As Exception, _
       ByVal cancelled As Boolean _
    )
    public ExecuteActionCompletedEventArgs( 
       C1DocumentAction action,
       C1BookmarkPosition position,
       Exception error,
       bool cancelled
    )

    Parameters

    action
    A C1DocumentAction object defining an action executed in async operation.
    position
    A C1BookmarkPosition object defining position in the generated document which should be showed.
    error
    Any error that occurred during the asynchronous operation.
    cancelled
    A value indicating whether the asynchronous operation was canceled.
    See Also