Class InkEditedEventArgs
Provides data for the InkEdited event.
Inheritance
System.Object
InkEditedEventArgs
Namespace: Syncfusion.SfPdfViewer.XForms
Assembly: Syncfusion.SfPdfViewer.XForms.dll
Syntax
public class InkEditedEventArgs : EventArgs
Properties
Bounds
Gets the bounds of the edited ink annotation.
Declaration
public Rectangle Bounds { get; }
Property Value
Type |
---|
Xamarin.Forms.Rectangle |
IsSignature
Gets a value indicating whether returns true, if the added annotation is a signature. Default value is false.
Declaration
public bool IsSignature { get; }
Property Value
Type |
---|
System.Boolean |
NewColor
Gets the new color of the edited ink annotation.
Declaration
public Color NewColor { get; }
Property Value
Type |
---|
Xamarin.Forms.Color |
NewInkPoints
Gets the new ink points collection of the ink after the editing operation.
Declaration
public List<List<float>> NewInkPoints { get; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Collections.Generic.List<System.Single>> |
NewOpacity
Gets the new opacity of the edited ink annotation.
Declaration
public float NewOpacity { get; }
Property Value
Type |
---|
System.Single |
NewThickness
Gets the new thickness of the edited ink annotation.
Declaration
public float NewThickness { get; }
Property Value
Type |
---|
System.Single |
OldColor
Gets the old color of the edited ink annotation.
Declaration
public Color OldColor { get; }
Property Value
Type |
---|
Xamarin.Forms.Color |
OldInkPoints
Gets the old ink points collection of the ink before the editing operation.
Declaration
public List<List<float>> OldInkPoints { get; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Collections.Generic.List<System.Single>> |
OldOpacity
Gets the old opacity of the edited ink annotation.
Declaration
public float OldOpacity { get; }
Property Value
Type |
---|
System.Single |
OldThickness
Gets the old thickness of the edited ink annotation.
Declaration
public float OldThickness { get; }
Property Value
Type |
---|
System.Single |
PageNumber
Gets the page number of the edited ink annotation.
Declaration
public int PageNumber { get; }
Property Value
Type |
---|
System.Int32 |