Share

Autodesk.AutoCAD.Customization.Orientation Enumeration

Description

An enum of possible values for orientation.

Visual Basic

Public Enum Orientation
  Horizontal = System.Windows.Controls.Orientation.Horizontal
  Vertical = System.Windows.Controls.Orientation.Vertical
End Enum

C#

public enum Orientation {
  Horizontal = System.Windows.Controls.Orientation.Horizontal,
  Vertical = System.Windows.Controls.Orientation.Vertical
}

Members

Members Description
Horizontal = System.Windows.Controls.Orientation.Horizontal Control or layout should be horizontally oriented.
Vertical = System.Windows.Controls.Orientation.Vertical Control or layout should be vertically oriented.

Was this information helpful?