Version

Change the Orientation of Tools on a Toolbar

Tools on a toolbar display horizontally if the toolbar is docked top or bottom and vertically if the toolbar is docked left or right. You can change this default behavior with the ToolOrientation property. By setting the ToolOrientation property of the ToolbarSettings class to horizontal, the tools on the toolbar will display horizontally, even if the toolbar is docked left or right. Setting this property to BaseOnToolbarOrientation will cause the tools to display vertically if attached to a vertically docked toolbar and horizontally if attached to a horizontally docked toolbar. The following code shows how to display vertical tools.

In Visual Basic:

Imports Infragistics.Win.UltraWinToolbars
...
Me.UltraToolbarsManager1.Toolbars(0).Settings.ToolOrientation = _
  ToolOrientation.Vertical

In C#:

using Infragistics.Win.UltraWinToolbars;
...
this.ultraToolbarsManager1.Toolbars[0].Settings.ToolOrientation =
  ToolOrientation.Vertical;