CheckEdit.DefaultStateAfterIndeterminate Field
In This Article
Allows you to choose the order in which this CheckEdit cycles through its “Checked”, “Unchecked”, and “Indeterminate” states. The “Indeterminate” state is available if the RepositoryItemCheckEdit.AllowGrayed property is enabled.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.2.dll
NuGet Package: DevExpress.Win.Navigation
#Declaration
[EditorBrowsable(EditorBrowsableState.Advanced)]
public static CheckEdit.StateAfterIndeterminate DefaultStateAfterIndeterminate
#Field Value
Type | Description |
---|---|
Check |
Specifies the state order. |
#Remarks
The default state order is “Indeterminate - Unchecked - Checked”. To alter this order and make it “Indeterminate - Checked - Unchecked”, set the DefaultStateAfterIndeterminate
property to Checked
.
See Also