Class SignatureSaveEventArgs
Provides information about the OnSave event callback.
Inheritance
System.Object
SignatureSaveEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class SignatureSaveEventArgs : Object
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 | The default value is .
|
FileName
Gets or sets the file name to be saved.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string denotes the file name. The default value is .
|
FileType
Gets or sets the file type to be saved.
Declaration
public SignatureFileType FileType { get; set; }
Property Value
Type | Description |
---|---|
SignatureFileType | A SignatureFileType denotes the file type SignatureFileType. The default value is .
|