Class SignatureSaveEventArgs
Provides information about the OnSave event callback.
Inheritance
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class SignatureSaveEventArgs : Object
Remarks
This class contains properties that allow customization of the signature save operation, including the ability to cancel the save action and specify file properties.
Constructors
SignatureSaveEventArgs()
Declaration
public SignatureSaveEventArgs()
Properties
Cancel
Gets or sets whether to cancel the save action. You can cancel and perform save operation programmatically.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
When set to true
, the automatic save operation is cancelled, allowing you to implement custom save logic.
FileName
Gets or sets the file name to be saved.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String | A |
Remarks
This property specifies the name used when saving the signature file, without the file extension.
FileType
Gets or sets the file type to be saved.
Declaration
public SignatureFileType FileType { get; set; }
Property Value
Type | Description |
---|---|
SignatureFileType | A SignatureFileType value that specifies the file format. The default value is Png. |
Remarks
This property determines the format of the saved signature file, supporting PNG, JPEG, and SVG formats.