menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class SignatureSaveEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    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
    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

    true to cancel the save operation; otherwise, false. The default value is false.

    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 string representing the name of the file. The default value is "Signature".

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved