Version

IsChecked Property

Gets or sets the checked state of the check editor. Null indicates the check editor is in indeterminate state.
Syntax
'Declaration
 
Public Property IsChecked As Nullable(Of Boolean)
public Nullable<bool> IsChecked {get; set;}
Remarks

When the check editor is checked the IsChecked will return True. When it's unchecked the property will return False. When it's in indeterminate state the property will return null.

IsChecked, Value and Text are all synchronized. When the editor's value is modified, all three properties will reflect the current state of the check editor.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also