//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.Web.UI.WebControls { using System; /// /// Defines the direction of flow within a list. /// public enum RepeatDirection { /// /// The list items are rendered horizontally in rows (from left to right, then top to botton). /// Horizontal = 0, /// /// The list items are rendered vertically in columns (from top to bottom, then left to right). /// Vertical = 1 } }