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  As String _
) 
             
        
            
            'Usage
 
Dim instance As Form
Dim fullName As String
 
instance.RemoveField(fullName)
             
        
            
            public void RemoveField( 
   string 
)
             
        
            
            public: void RemoveField( 
   string* 
) 
             
        
            
            public:
void RemoveField( 
   String^ 
) 
             
        
             
        
            Parameters
- fullName
 
-  The fully qualified name (including path). For instance,
             "Address" or "Details.Address".
 
            
             
            Exceptions
| Exception | Description | 
| System.ArgumentNullException | 
            Thrown in case of argument fullName is null or empty or in case of given name
            refers the nonexistent field.
             | 
 
            
            
            
            
            
            
            
            
            
            
            See Also