Class HyperlinkClickedEventArgs
Provides data for HyperlinkClicked event.
Inheritance
System.Object
HyperlinkClickedEventArgs
Namespace: Syncfusion.SfPdfViewer.Android
Assembly: Syncfusion.SfPdfViewer.Android.dll
Syntax
public class HyperlinkClickedEventArgs : EventArgs
Properties
Bounds
Gets the bounds of the hyperlink is being clicked.
Declaration
public RectangleF Bounds { get; }
Property Value
Type | Description |
---|---|
System.Drawing.RectangleF | A rectangle that holds a bounds of link uri. |
Handled
Gets or sets a value indicating whether the hyperlink navigation was handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | Default value is true. |
PageIndex
Gets the current page index of the hyperlink.
Declaration
public int PageIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer that holds the current page index. |
Uri
Gets the hyperlink is being clicked.
Declaration
public string Uri { get; }
Property Value
Type | Description |
---|---|
System.String | A string that holds the clicked uri. Default value is System.String.Empty. |