Copyright © 2003-2005 MultiMedia Soft 
Return to index  
 
Enabled property 
 
Type
[Visual Basic] 
Public Property Enabled As Boolean 
 
[C#] 
public bool Enabled {get; set;} 
 
[C++] 
public: __property bool get_Enabled(); 
public: __property void set_Enabled(bool);
 
 
Remarks
Boolean value that determines if the control is enabled or disabled. 
Supported values are the following: 
Value
Meaning
False
The button is disabled.
True (default)
The button is enabled.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2003-2005 MultiMedia Soft 
Return to index