Gets or sets a value indicating the checked state of the checkbox, either blank, checked or unchecked.

Namespace: MonoSoftware.Web.Controls
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public Nullable<bool> Checked { get; set; }
Visual Basic
Public Property Checked As Nullable(Of Boolean)
	Get
	Set
Visual C++
public:
property Nullable<bool> Checked {
	Nullable<bool> get ();
	void set (Nullable<bool> value);
}
F#
member Checked : Nullable<bool> with get, set

Property Value

Type: Nullable<(Of <(<'Boolean>)>)>
Checked to indicate a checked state, blank to indicate the default or no preference state and unchecked to indicate the explicitly unchecked or denied state.

See Also