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