[]
        
(Showing Draft Content)

Changing the Position of the Toolbar from Horizontal to Vertical

To change the position of the toolbars from horizontal to vertical, use the Horizontal property. To do this, complete the following steps:

  1. Create a toolbar.

  2. Use the following code to make the toolbar appear vertical:

    To write code in Visual Basic

    toolbar.Horizontal = False
    

    To write code in C#

    toolbar.Horizontal = False;
    

See Also

Creating a Toolbar