ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / Form Class / CreateSignatureField Method / CreateSignatureField(String,SignatureFieldWidgetAnnotation) Method
The full name of the field.
This parameter is ignored. The signature field will have no appearance.




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

    Parameters

    fullName
    The full name of the field.
    widget
    This parameter is ignored. The signature field will have no appearance.

    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 widget argument is null or the fullName argument is null or empty.
    See Also