This is a migrated thread and some comments may be shown as answers.

RadCheckedDropDown check items with index ?

1 Answer 390 Views
CheckedListBox
This is a migrated thread and some comments may be shown as answers.
George C.
Top achievements
Rank 2
Iron
Veteran
George C. asked on 03 Feb 2019, 02:54 AM
How to check items with their index programmatically ?

1 Answer, 1 is accepted

Sort by
0
Accepted
Dess | Tech Support Engineer, Principal
Telerik team
answered on 06 Feb 2019, 09:07 AM
Hello, George,         

In order to check an item programatically identified by its index, you can use the following approach:
 
int index = 2;
this.radCheckedDropDownList1.Items[index].Checked = true;

You can refer to the online documentation in order to get familiar with the API that RadCheckedDropDownList supports: https://docs.telerik.com/devtools/winforms/controls/dropdown-listcontrol-and-checkeddropdownlist/checkeddropdownlist/getting-started

I hope this information helps. 

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
CheckedListBox
Asked by
George C.
Top achievements
Rank 2
Iron
Veteran
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or