CheckEdit Class
Represents the check box editor.
Namespace: DevExpress.Xpf.Editors
Assembly: DevExpress.Xpf.Core.v14.2.dll
#Declaration
[DXToolboxBrowsable(DXToolboxItemKind.Free)]
public class CheckEdit :
BaseEdit,
IBooleanExportSettings,
IExportSettings,
ICommandSource
#Remarks
The CheckEdit class represents a check editor that gives an end-user an option such as true/false or yes/no.
The editor's content is specified by the CheckEdit.Content property.
A check editor supports three states (checked, unchecked and intermediate) if its CheckEdit.IsThreeState property is set to true. Otherwise, if this property is set to false, only checked and unchecked states are supported.
Use the CheckEdit.IsChecked property to specify the editor's state. To set the editor to the intermediate state (if supported), set the CheckEdit.IsChecked property to null.
After the CheckEdit.IsChecked property's value has been changed, the check editor fires the corresponding event (CheckEdit.Checked, CheckEdit.Unchecked or CheckEdit.Indeterminate).