Class FreeTextAnnotationDeselectedEventArgs
Provides data for the FreeTextAnnotationDeselected event.
Inheritance
System.Object
FreeTextAnnotationDeselectedEventArgs
Namespace: Syncfusion.SfPdfViewer.iOS
Assembly: Syncfusion.SfPdfViewer.iOS.dll
Syntax
public class FreeTextAnnotationDeselectedEventArgs : EventArgs
Constructors
FreeTextAnnotationDeselectedEventArgs(CGRect, String, Single, UIColor, Int32)
Instantiates a new instance of the FreeTextAnnotationDeselectedEventArgs class.
Declaration
public FreeTextAnnotationDeselectedEventArgs(CGRect bounds, string text, float fontSize, UIColor textColor, int pageNumber)
Parameters
Type | Name | Description |
---|---|---|
CoreGraphics.CGRect | bounds | The bounds of the free text annotation within the page. |
System.String | text | The text appearing in the free text annotation. |
System.Single | fontSize | The font size of the text in free text annotation. |
UIKit.UIColor | textColor | The text color of the free text annotation. |
System.Int32 | pageNumber | The page number in which the free text appears. |
Properties
Bounds
Gets the Bounds of the Deselected text annotation.
Declaration
public CGRect Bounds { get; }
Property Value
Type |
---|
CoreGraphics.CGRect |
PageNumber
Gets the pagenumber of the Deselected text annotation.
Declaration
public int PageNumber { get; }
Property Value
Type |
---|
System.Int32 |
Text
Gets the text of the Deselected text annotation.
Declaration
public string Text { get; }
Property Value
Type |
---|
System.String |
TextColor
Gets the color of the Deselected text annotation.
Declaration
public UIColor TextColor { get; }
Property Value
Type |
---|
UIKit.UIColor |
TextSize
Gets the Font size of the Deselected text annotation.
Declaration
public float TextSize { get; }
Property Value
Type |
---|
System.Single |