Hi,
What is the syntax to select all the items in multiselect Ultracomboeditor? Also, is it possible to highlight the selected items instead of the checkboxes?
this
.multiselectIntLE.DisplayMember ="test1";
this.multiselectIntLE.ValueMember ="test1";
this.multiselectIntLE.DataSource = tInternal;
this.multiselectIntLE.CheckedListSettings.CheckBoxStyle = Infragistics.Win.CheckStyle.CheckBox;
this.multiselectIntLE.CheckedListSettings.CheckBoxAlignment = ContentAlignment.MiddleLeft;
this.multiselectIntLE.CheckedListSettings.EditorValueSource = EditorWithComboValueSource.CheckedItems;
this.multiselectIntLE.CheckedListSettings.ItemCheckArea = ItemCheckArea.Item;
Thanks
foreach (ValueListItem item in ultraComboEditor1.Items) { item.CheckState = CheckState.Checked; }