ASP.NET RepeatDirection Property

Definition and Usage

The RepeatDirection property is used to set or return whether the items in the CheckBoxList are displayed vertically or horizontally.

Syntax

<asp:CheckBoxList RepeatDirection="mode" runat="server">
some content
</asp:CheckBoxList >
Property Description
mode

Specifies the layout direction of items in the CheckBoxList.

Possible values:

  • Horizontal - Items are displayed horizontally
  • Vertical - Default. Items are displayed vertically.

Example

The following example sets the RepeatDirection of the CheckBoxList control:

<form runat="server">
<asp:CheckBoxList id="cb1" runat="server"> RepeatDirection="Horizontal">
Some content
</asp:CheckBoxList>
</form>

Example

Set the RepeatDirection of CheckBoxList Control