IsDisabled Property (Control)
In This Topic
Gets or sets a value that determines whether the control is disabled.
Syntax
'Declaration
Public Property IsDisabled As System.Boolean
'Usage
Dim instance As Control
Dim value As System.Boolean
instance.IsDisabled = value
value = instance.IsDisabled
public System.bool IsDisabled {get; set;}
public read-write property IsDisabled: System.Boolean;
public function get,set IsDisabled : System.boolean
public: __property System.bool get_IsDisabled();
public: __property void set_IsDisabled(
System.bool value
);
public:
property System.bool IsDisabled {
System.bool get();
void set ( System.bool value);
}
See Also