Message 1 of 6
Not applicable
01-24-2013
02:03 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Where are the bits of the Ribbon API to add a slide out to a ribbon panel?
Autodesk.Windows.RibbonControl ribbonControl = Autodesk.Windows.ComponentManager.Ribbon;
RibbonTab Tab = new RibbonTab();
ribbonControl.Tabs.Add(Tab);
// create Ribbon panels
Autodesk.Windows.RibbonPanelSource panel1Panel = new RibbonPanelSource();
panel1Panel.Title = "Panel1";
RibbonPanel Panel1 = new RibbonPanel();
Panel1.Source = panel1Panel;
Tab.Panels.Add(Panel1);
I saw some source that hinted you could use panel1Panel.AddSlideout() but in the search I do not see any Ribbon API that allows for any slideout functionality?
Do you *have* to use the CUI API for this?
Solved! Go to Solution.