TaskDialogVerificationCheckBox.Checked Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or set a value indicating whether the TaskDialogVerificationCheckBox is in the checked state.
public:
property bool Checked { bool get(); void set(bool value); };
public bool Checked { get; set; }
member this.Checked : bool with get, set
Public Property Checked As Boolean
Property Value
true
if the TaskDialogVerificationCheckBox is in the checked state; otherwise, false
. The default value is false
.
Exceptions
The property is set on a verification checkbox instance that is currently bound to a task dialog, but it's not visible as its initial Text property value was null
or an empty string.
- or - The property is set and the task dialog has started navigating to a new page containing this verification checkbox instance, but the Created event has not been raised yet.
- or - The property is set on a verification checkbox instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.
Remarks
This property can be set while the dialog is shown.