Autodesk.AutoCAD.Customization Namespace > ToolbarOrient Enumeration
Autodesk.AutoCAD.Customization.ToolbarOrient Enumeration
Description

 

This enum provides the possible values for the orientation of a toolbar.

Visual Basic
Public Enum ToolbarOrient
  bottom = 3
  floating = 1
  left = 4
  right = 5
  top = 2
End Enum
C#
public enum ToolbarOrient {
  bottom = 3,
  floating = 1,
  left = 4,
  right = 5,
  top = 2
}
Members
Members 
Description 
bottom = 3 
The toolbar is oriented at the bottom. 
floating = 1 
The toolbar is oriented to be floating. 
left = 4 
The toolbar is oriented at the left. 
right = 5 
The toolbar is oriented at the right. 
top = 2 
The toolbar is oriented at the top. 
   Comments?