Represents ribbon bar control.
System.Object
Eplan.EplApi.Gui.RibbonBar
Example of adding a command to the last position of the ribbon
RibbonBar ribbonBar = new RibbonBar();
ribbonBar.AddCommand("New ribbon button text", "XPartsManagementStart", 2);
Example of adding a tab, command group and a command
var newTab = new Eplan.EplApi.Gui.RibbonBar().AddTab("New API tab");
var commandGroup = newTab.AddCommandGroup("New API command group");
var command = commandGroup.AddCommand("New API command", "XPartsManagementStart");