Skip to main content

CheckedComboBoxEdit.CheckAll() Method

Checks all items.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v25.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void CheckAll()

Remarks

Sets the CheckState property to Checked for all items in the Items collection.

The following code snippet populates the editor with items and checks them:

checkedComboBoxEdit1.Properties.Items.Add(1, "Design");
checkedComboBoxEdit1.Properties.Items.Add(2, "Development");
checkedComboBoxEdit1.Properties.Items.Add(3, "Testing");
checkedComboBoxEdit1.Properties.Items.Add(4, "Deployment");

checkedComboBoxEdit1.CheckAll();
See Also