ImageGear .NET v25.2 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / SignatureField Class / Signature Property




In This Topic
    Signature Property
    In This Topic
    Gets or sets the signature associated with this field. Setting this will prepare the document for signing, which will effectively be done on the next save operation.
    Syntax
    'Declaration
     
    Public Property Signature As Signature
    'Usage
     
    Dim instance As SignatureField
    Dim value As Signature
     
    instance.Signature = value
     
    value = instance.Signature
    public Signature Signature {get; set;}
    public: __property Signature* get_Signature();
    public: __property void set_Signature( 
       Signature* value
    );
    public:
    property Signature^ Signature {
       Signature^ get();
       void set (    Signature^ value);
    }

    Property Value

    The signature associated with this field. It can be a CertificationSignature or a ApprovalSignature. If the field is not yet signed, it will be null.
    See Also