Hi,
To put a NDockingToolbar on specific row in NCommandBarsManager you need to set toolbar’s RowIndex property. For example if you set RowIndex = 2 the toolbar will reside on the 3rd row.
The order of the toolbars in the same row depends on the position of the toolbars in NCommandBarsManager.Toolbars collection.
For example to put the 3rd toolbar in NDiagramCommandBarsManager to reside next to the 2nd one you should do the following:
nDiagramCommandBarsManager1.Toolbars[2].RowIndex = 1;
Best Regards,
Nevron Support Team