CheckBoxList::RepeatLayout Property

 

Gets or sets a value that specifies whether the list will be rendered by using a table element, a ul element, an ol element, or a span element.

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

public:
property RepeatLayout RepeatLayout {
	virtual RepeatLayout get();
	virtual void set(RepeatLayout value);
}

Property Value

Type: System.Web.UI.WebControls::RepeatLayout

A value that specifies whether the list will be rendered by using a table element, a ul element, an ol element, or a span element. The default is Table.

Exception Condition
ArgumentOutOfRangeException

The specified layout is not one of the RepeatLayout values.

For information about the available options, see the RepeatLayout enumeration.

System_CAPS_noteNote

Two options are new as of ASP.NET 4: OrderedList and UnorderedList.

Some RepeatLayout settings do not allow horizontal layout. For more information, see the RepeatLayout enumeration.

The following code example demonstrates how to use the RepeatLayout property to change the HTML that the CheckBoxList control renders.

System_CAPS_noteNote

The following code samples use the single-file code model and may not work correctly if copied directly into a code-behind file. Each code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Forms Page Code Model.

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

.NET Framework
Available since 1.1
Return to top
Show: