This documentation is archived and is not being maintained.

RepeatDirection Enumeration

Specifies the direction in which items of a list control are displayed.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public enum class RepeatDirection

Member nameDescription
HorizontalItems of a list are displayed horizontally in rows from left to right, then top to bottom, until all items are rendered.
VerticalItems of a list are displayed vertically in columns from top to bottom, and then left to right, until all items are rendered.

The RepeatDirection enumeration represents the different directions in which the items of a list control can be displayed.

NoteNote

The number of columns displayed is always determined by the RepeatColumns property of the list control.

Horizontal specifies that the items of a list control are displayed in rows loaded from left to right, then top to bottom, until all items are rendered. For example, if the RepeatColumns property of the list control is set to three, the items of the list control are displayed in three columns.

1

2

3

4

5

6

7

8

Vertical specifies that the items of a list control are displayed in columns loaded from top to bottom, then left to right, until all items are rendered. For example, if the RepeatColumns property of the list control is set to three, the items of the list control are displayed in rows of three items.

1

4

7

2

5

8

3

6

No code example is currently available or this language may not be supported.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: