Gets or sets a value indicating whether the text entered in the field represents the 
            pathname of a file whose contents are to be submitted as the value of the field.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Property FileSelect As Boolean
             
        
            
            'Usage
 
Dim instance As TextField
Dim value As Boolean
 
instance.FileSelect = value
 
value = instance.FileSelect
             
        
            
            public bool FileSelect {get; set;}
             
        
            
            public: __property bool get_FileSelect();
public: __property void set_FileSelect( 
   bool value
);
             
        
            
            public:
property bool FileSelect {
   bool get();
   void set (    bool value);
}
             
        
             
        
            
            
            Property Value
Whether the text entered in the field represents the pathname of a file
             whose contents are to be submitted as the value of the field.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also