Class UnhandledConditionEventArgs
Provides data for the UnhandledConditionOccurred event.
Namespace: Syncfusion.SfPdfViewer.XForms
Assembly: Syncfusion.SfPdfViewer.XForms.dll
Syntax
public class UnhandledConditionEventArgs : EventArgs
Properties
Description
Gets the details of the unhandled condition.
Declaration
public string Description { get; }
Property Value
Type | Description |
---|---|
System.String | A string that holds complete details about the unhandled condition. |
Handled
Gets or sets a value indicating whether UnhandledConditionOccurred event is handled.
Set the value as "true" to indicate that the event is handled in the application and to prevent the default alert view.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is |
Title
Gets the title of the unhandled condition.
Declaration
public string Title { get; }
Property Value
Type | Description |
---|---|
System.String | A string that holds the title of the unhandled condition. |