CheckBox::Checked Property
Gets or sets a value indicating whether the CheckBox control is checked.
Assembly: System.Web (in System.Web.dll)
public: [BindableAttribute(true, BindingDirection::TwoWay)] [ThemeableAttribute(false)] property bool Checked { virtual bool get(); virtual void set(bool value); }
Property Value
Type: System::Booleantrue to indicate a checked state; otherwise, false. The default is false.
Implements
ICheckBoxControl::CheckedUse this property to determine whether the CheckBox control is checked. This property can also be used to programmatically set the state of the CheckBox control.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.
The following example demonstrates how to use the Checked property to determine the state of the CheckBox control.
Note |
|---|
The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Forms Page Code Model. |
Available since 1.1
