DateTimePicker.Checked Property

Definition

Gets or sets a value indicating whether the Value property has been set with a valid date/time value and the displayed value is able to be updated.

C#
[System.ComponentModel.Bindable(true)]
public bool Checked { get; set; }

Property Value

true if the Value property has been set with a valid DateTime value and the displayed value is able to be updated; otherwise, false. The default is true.

Attributes

Remarks

This property is used to obtain the state of the check box that is displayed if the ShowCheckBox property value is true. If the Checked property value is true, the DateTimePicker control displays the properly formatted Value property value; otherwise, the control displays the last valid date/time value assigned to the Value property or the current date and time (DateTime.Now) if no value has ever been assigned.

Applies to

Produkt Versioner
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also