Class HyperlinkClickedEventArgs
Provides data for the HyperlinkClicked event.
Inheritance
System.Object
HyperlinkClickedEventArgs
Namespace: Syncfusion.SfPdfViewer.XForms
Assembly: Syncfusion.SfPdfViewer.XForms.dll
Syntax
public class HyperlinkClickedEventArgs : EventArgs
Properties
Bounds
Gets the bounds of the hyperlink is being clicked.
Declaration
public Rectangle Bounds { get; }
Property Value
Type | Description |
---|---|
Xamarin.Forms.Rectangle | A rectanglef 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 interger 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. |