ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / Form Class / RemoveField Method / RemoveField(String) Method
The fully qualified name (including path). For instance, "Address" or "Details.Address".




In This Topic
    RemoveField(String) Method
    In This Topic
    Removes a field from the form based on the fully qualified name, including its widget annotations and references to them from any pages.
    Syntax
    'Declaration
     
    Public Overloads Sub RemoveField( _
       ByVal fullName As String _
    ) 
    'Usage
     
    Dim instance As Form
    Dim fullName As String
     
    instance.RemoveField(fullName)
    public void RemoveField( 
       string fullName
    )
    public: void RemoveField( 
       string* fullName
    ) 
    public:
    void RemoveField( 
       String^ fullName
    ) 

    Parameters

    fullName
    The fully qualified name (including path). For instance, "Address" or "Details.Address".
    Exceptions
    ExceptionDescription
    Thrown in case of argument fullName is null or empty or in case of given name refers the nonexistent field.
    Remarks
    See RemoveField(Field) for exception information on references to the field's properties after removal.
    See Also