Copyright © 2003-2005 MultiMedia Soft 
Return to index  
 
Clickable property 
 
Type
[Visual Basic] 
Public Property Clickable As Boolean 
 
[C#] 
public bool Clickable {get; set;} 
 
[C++] 
public: __property bool get_Clickable(); 
public: __property void set_Clickable(bool);
 
 
Remarks
Boolean value that determines if the button can be clicked, i.e. if the button surface will appear pressed when clicked with the mouse. 
This property is set to False by default for the controls Ctl3dPictureBox, Ctl3dGroupBox and Ctl3dLabel
This property can be changed at Design time using the Others tab of the 3D Button Visual Editor application. 
Supported values are the following: 
Value
Meaning
False
The button cannot be clicked.
True (default)
The button can be clicked.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2003-2005 MultiMedia Soft 
Return to index