To change the position of the toolbars from horizontal to vertical, use the Horizontal property. To do this, complete the following steps:
Create a toolbar.
Use the following code to make the toolbar appear vertical:
To write code in Visual Basic
Visual Basic |
Copy Code
|
---|---|
toolbar.Horizontal = False |
To write code in C#
C# |
Copy Code
|
---|---|
toolbar.Horizontal = False; |