Class SignaturePropertiesChangeEventArgs
This event arguments provides the necessary information about signature properties change event.
Inheritance
System.Object
SignaturePropertiesChangeEventArgs
Implements
System.IEquatable<SignaturePropertiesChangeEventArgs>
Inherited Members
Namespace: Syncfusion.Blazor.PdfViewer
Assembly: Syncfusion.Blazor.dll
Syntax
public class SignaturePropertiesChangeEventArgs : SignatureBaseEventArgs<SignaturePropertiesChangeEventArgs>, IEquatable<SignaturePropertiesChangeEventArgs>
Constructors
SignaturePropertiesChangeEventArgs()
Declaration
public SignaturePropertiesChangeEventArgs()
Properties
IsOpacityChanged
It returns true that the opacity of the signature is changed.
Declaration
public bool IsOpacityChanged { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsStrokeColorChanged
It returns true that the stroke color of the signature is changed.
Declaration
public bool IsStrokeColorChanged { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsThicknessChanged
It returns true that the thickness of the signature is changed.
Declaration
public bool IsThicknessChanged { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
NewValue
Gets the new property value of the signature.
Declaration
public string NewValue { get; }
Property Value
Type | Description |
---|---|
System.String |
OldValue
Gets the old property value of the signature.
Declaration
public string OldValue { get; }
Property Value
Type | Description |
---|---|
System.String |
Implements
System.IEquatable<>