DataGridCheckBoxColumn.IsThreeState 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 sets a value that indicates whether the hosted CheckBox controls enable three states or two.
public:
property bool IsThreeState { bool get(); void set(bool value); };
public bool IsThreeState { get; set; }
member this.IsThreeState : bool with get, set
Public Property IsThreeState As Boolean
Property Value
true
if the hosted controls support three states; false
if they support two states. The default is false
.
Remarks
The DataGridCheckBoxColumn.IsThreeState property lets you use a nullable Boolean as the data type and has the same functionality as the ToggleButton.IsThreeState property on CheckBox.
The three states for the ToggleButton.IsChecked property of the CheckBox control are true
, false
, and null
.