1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
//------------------------------------------------------------------------------
// <copyright file="RepeatDirection.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
*/
namespace System.Web.UI.WebControls {
using System;
/// <devdoc>
/// Defines the direction of flow within a list.
/// </devdoc>
public enum RepeatDirection {
/// <devdoc>
/// <para>The list items are rendered horizontally in rows (from left to right, then top to botton).</para>
/// </devdoc>
Horizontal = 0,
/// <devdoc>
/// <para>The list items are rendered vertically in columns (from top to bottom, then left to right).</para>
/// </devdoc>
Vertical = 1
}
}
|