RadioButtonList::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.
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::RepeatLayoutA 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 radio button layout is not one of the RepeatLayout values. |
For information about the available options, see the RepeatLayout enumeration.
Note |
|---|
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 display the items of a RadioButtonList control in a table.
Available since 1.1
