Hi,
Can you please try the Position property and let me know if that works?
[C#]
IRibbonItems m_items = this.ribbonControlAdv1.Header.MainItems;
foreach (ToolStripTabItem m_item in m_items)
{
MessageBox.Show(m_item.Name.ToString());
}
With this approach, you can get the order of the tab items. To change the position of the items, you can use the Position property.
[C#]
toolStripTabItem3.Position = 0;
Regards,
Nanda