//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls { /// /// Specifies a horizontal or vertical orientation. /// public enum Orientation { Horizontal = 0, Vertical = 1 } }