FlexReport for WinForms | ComponentOne
C1.Win.FlexViewer.4.5.2 Assembly / C1.Win.FlexViewer Namespace / C1FlexViewerDialog Class / OperationError Event

In This Topic
    OperationError Event (C1FlexViewerDialog)
    In This Topic
    Occurs in case of an exception thrown during a report operation, such as Generate or Export.
    Syntax
    'Declaration
     
    Public Event OperationError As EventHandler(Of OperationErrorEventArgs)
    public event EventHandler<OperationErrorEventArgs> OperationError
    Event Data

    The event handler receives an argument of type OperationErrorEventArgs containing data related to this event. The following OperationErrorEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the exception that represents the error.  
    Gets or sets a value indicating if no additional actions are required.  
    Gets the operation being executed when the error occurred.  
    Gets or sets a string displayed as StatusText.  
    Gets or sets a value indicating whether to throw the exception.  
    See Also