FlexReport for UWP | ComponentOne
C1.UWP.Document Assembly / C1.Xaml.Document Namespace / FindActionCompletedEventArgs Class / FindActionCompletedEventArgs Constructor
Defines the find action.
A C1FoundPosition 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
    FindActionCompletedEventArgs Constructor
    In This Topic
    Initializes a new instance of the FindActionCompletedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal action As C1FindTextAction, _
       ByVal position As C1FoundPosition, _
       ByVal error As Exception, _
       ByVal cancelled As Boolean _
    )
    public FindActionCompletedEventArgs( 
       C1FindTextAction action,
       C1FoundPosition position,
       Exception error,
       bool cancelled
    )

    Parameters

    action
    Defines the find action.
    position
    A C1FoundPosition 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