ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / Form Class / CreateSignatureField Method / CreateSignatureField(String,ImGearPDFPage,ImGearPDFFixedRect) Method
The full name of the field.
The parameter is not used. The signature field will not appear on a page.
The parameter is not used. The signature field will have an empty bounding rectangle.




In This Topic
    CreateSignatureField(String,ImGearPDFPage,ImGearPDFFixedRect) Method
    In This Topic
    Creates a new SignatureField in the PDF Form.
    Syntax
    'Declaration
     
    Public Overloads Function CreateSignatureField( _
       ByVal fullName As String, _
       ByVal page As ImGearPDFPage, _
       ByVal rect As ImGearPDFFixedRect _
    ) As SignatureField
    'Usage
     
    Dim instance As Form
    Dim fullName As String
    Dim page As ImGearPDFPage
    Dim rect As ImGearPDFFixedRect
    Dim value As SignatureField
     
    value = instance.CreateSignatureField(fullName, page, rect)
    public SignatureField CreateSignatureField( 
       string fullName,
       ImGearPDFPage page,
       ImGearPDFFixedRect rect
    )
    public: SignatureField* CreateSignatureField( 
       string* fullName,
       ImGearPDFPage* page,
       ImGearPDFFixedRect* rect
    ) 
    public:
    SignatureField^ CreateSignatureField( 
       String^ fullName,
       ImGearPDFPage^ page,
       ImGearPDFFixedRect^ rect
    ) 

    Parameters

    fullName
    The full name of the field.
    page
    The parameter is not used. The signature field will not appear on a page.
    rect
    The parameter is not used. The signature field will have an empty bounding rectangle.

    Return Value

    A SignatureField.
    Exceptions
    ExceptionDescription
    Thrown when an error occurs during method execution. Additional information about the error may be found in the message of the exception. Commonly occurs when the fullName argument is null or empty, the page argument is null, or the rect argument is null.
    See Also