Category / Section
How to select the TabstripItems in Tabstrip programmatically?
1 min read
For this we have to set the selected property of the particular TabStripItem to true.
C#
TabStrip1.Items[2].Selected = true;
The above code select the TabStripItem which is at the second position.
VB
TabStrip1.Items[2].Selected = true