Gets or sets a value indicating whether the field can or cannot be changed.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Property ReadOnly As Boolean
             
        
            
            'Usage
 
Dim instance As Field
Dim value As Boolean
 
instance.ReadOnly = value
 
value = instance.ReadOnly
             
        
            
            public bool ReadOnly {get; set;}
             
        
            
            public: __property bool get_ReadOnly();
public: __property void set_ReadOnly( 
   bool value
);
             
        
            
            public:
property bool ReadOnly {
   bool get();
   void set (    bool value);
}
             
        
             
        
            
            
            Property Value
Whether the field's value can be changed or not.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also