Gets or sets the export value of the field. This assumes the most common case in which the field
            has exactly one widget. If the field has more than one widget, use Options[i].ExportValue instead.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Property ExportValue As String
             
        
            
            'Usage
 
Dim instance As CheckBox
Dim value As String
 
instance.ExportValue = value
 
value = instance.ExportValue
             
        
            
            public string ExportValue {get; set;}
             
        
            
            public: __property string* get_ExportValue();
public: __property void set_ExportValue( 
   string* value
);
             
        
            
            public:
property String^ ExportValue {
   String^ get();
   void set (    String^ value);
}
             
        
             
        
            
            
            Property Value
The value that is exported when the checkbox is checked. Cannot be "Off".
 
            
            
            
            
            
            
            
            
            
            
            
            See Also