Class DocumentLoadFailedEventArgs
Provides data for the DocumentLoadFailed event.
Inheritance
System.Object
DocumentLoadFailedEventArgs
Namespace: Syncfusion.Maui.PdfViewer
Assembly: Syncfusion.Maui.PdfViewer.dll
Syntax
public class DocumentLoadFailedEventArgs : EventArgs
Constructors
DocumentLoadFailedEventArgs()
Declaration
public DocumentLoadFailedEventArgs()
Properties
Exception
Gets the exception thrown by the error.
Declaration
public Exception Exception { get; }
Property Value
Type |
---|
System.Exception |
Handled
Gets or sets a value indicating whether the DocumentLoadFailed event is handled. Set the value to “true”, to indicate that the event is handled in the application and to prevent the display of built-in error messages. The default value is false.
Declaration
public bool Handled { get; set; }
Property Value
Type |
---|
System.Boolean |
Message
Gets the description of the error.
Declaration
public string Message { get; }
Property Value
Type |
---|
System.String |