Gets or sets a value indicating whether the checkbox is checked.
If there are multiple checkboxes in the field, setting Checked to true will check the first checkbox.
Syntax
public bool Checked {get; set;}
public: __property bool get_Checked();
public: __property void set_Checked(
bool value
);
public:
property bool Checked {
bool get();
void set ( bool value);
}
'Declaration
Public Property Checked As Boolean
'Usage
Dim instance As CheckBox
Dim value As Boolean
instance.Checked = value
value = instance.Checked
Property Value
Whether this considered checked.
See Also