Hi, Is there a way I can reorder tabs inside DockableGroup pane at run time? There is RepositionToGroup method but that accept a new group instance. I want to reorder inside the same group. Please help
Hello,
You could you use the 'RepositionToPane()' method, here is a simple example:
ultraDockManager1.DockAreas[0].Panes[2].RepositionToPane(ultraDockManager1.DockAreas[0].Panes[1], Infragistics.Win.UltraWinDock.PanePosition.Previous);
Please feel free to let me know if I misunderstood you or if you have any other questions.