1 //------------------------------------------------------------------------------
2 // <copyright file="Orientation.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Web.UI.WebControls {
8 
9 
10     /// <devdoc>
11     /// Specifies a horizontal or vertical orientation.
12     /// </devdoc>
13     public enum Orientation {
14 
15 
16         Horizontal = 0,
17 
18 
19         Vertical = 1
20     }
21 }
22