Skip to main content

CheckEdit() Constructor

Initializes a new instance of the CheckEdit class.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v26.1.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public CheckEdit()

Remarks

The following code snippet creates a CheckEdit control:

using DevExpress.XtraEditors;

CheckEdit checkEdit = new CheckEdit();
checkEdit.Properties.Caption = "Enable Notifications";

this.Controls.Add(checkEdit);

To create an in-place check editor within a data-aware control (for example, the Data Grid, TreeList, etc.), create a RepositoryItemCheckEdit instance and assign it to the column.

See Also