Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello Everyone,
We have any way to get ribbon tab default of Revit ?
I used this code but it doesn't seem to work with default tabs.
Autodesk.Windows.RibbonControl r = Autodesk.Windows.ComponentManager.Ribbon;
foreach (Autodesk.Windows.RibbonTab tab in r.Tabs)
{
if (!string.IsNullOrEmpty(tab.Name)) str.AppendLine(tab.Name);
}
Chuong Ho
Solved! Go to Solution.