Skip to main content

RepositoryItemCheckEdit() Constructor

Initializes a new RepositoryItemCheckEdit class instance with default settings.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public RepositoryItemCheckEdit()

Remarks

This constructor creates a new RepositoryItemCheckEdit class instance and sets its properties to their default values.

When a CheckEdit control is created, the constructor is automatically invoked to create and initiate a RepositoryItemCheckEdit object exposed via the control’s CheckEdit.Properties property. Generally, you do not need to call the RepositoryItemCheckEdit constructor manually unless you have to create check edit controls for in-place editing (for use in the Grid Control or other DevExpress container controls).

The following code uses the constructor to assign a check edit control as an editor for the Contract column in the Grid Control control:

RepositoryItemCheckEdit riCheckEdit = new RepositoryItemCheckEdit();
gridControl1.RepositoryItems.Add(riCheckEdit);
gridView1.Columns["Contract"].ColumnEdit = riCheckEdit;
See Also