Gets or sets a value indicating whether the form can be submitted if the field is not
             filled.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Property Required As Boolean
             
        
            
            'Usage
 
Dim instance As Field
Dim value As Boolean
 
instance.Required = value
 
value = instance.Required
             
        
            
            public bool Required {get; set;}
             
        
            
            public: __property bool get_Required();
public: __property void set_Required( 
   bool value
);
             
        
            
            public:
property bool Required {
   bool get();
   void set (    bool value);
}
             
        
             
        
            
            
            Property Value
Whether the field can be submitted without this field or not.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also