StiCheckedListBoxControl - how to set "checked" property?
Posted: Fri Jun 15, 2012 7:01 am
I'm using the stimulsoft checkedlistbox control on a form, and I'd like to include functionality to check all rows with one click, which would use code something like:
for(int i = 0; i < MyComboListBox.Control.Items.Count; i++)
{
MyComboListBox.Control.Items.Checked = true;
}
However, none of the properties or functions I would use to set the checked property in a baseline System.Windows.Forms.CheckedListBox (.Checked, .SetItemChecked() etc.) seem to be implemented in the stimulsoft version. Would anyone know if there's an equivalent available?
for(int i = 0; i < MyComboListBox.Control.Items.Count; i++)
{
MyComboListBox.Control.Items.Checked = true;
}
However, none of the properties or functions I would use to set the checked property in a baseline System.Windows.Forms.CheckedListBox (.Checked, .SetItemChecked() etc.) seem to be implemented in the stimulsoft version. Would anyone know if there's an equivalent available?