RadioButtonList.RepeatLayout Property
.NET Framework 3.0
Gets or sets the layout of radio buttons within the group.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public RepeatLayout get_RepeatLayout () /** @property */ public void set_RepeatLayout (RepeatLayout value)
public function get RepeatLayout () : RepeatLayout public function set RepeatLayout (value : RepeatLayout)
Not applicable.
Property Value
One of the RepeatLayout values. The default is Table.Use this property to specify whether the items in the RadioButtonList control are displayed in a table. If this property is set to RepeatLayout.Table, the items in the list are displayed in a table. If this property is set to RepeatLayout.Flow, the items in the list are displayed without a table structure.
The following code example demonstrates how to use the RepeatLayout property to display the items of a RadioButtonList control in a table.
<%@ Page Language="C#" AutoEventWireup="True" %> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title>RadioButtonList.RepeatLayout Example</title> </head> <body> <asp:RadioButtonList id="RadioButtonList1" RepeatColumns = "2" RepeatDirection="Vertical" RepeatLayout="Table" runat="server"> <asp:ListItem>Item 1</asp:ListItem> <asp:ListItem>Item 2</asp:ListItem> <asp:ListItem>Item 3</asp:ListItem> <asp:ListItem>Item 4</asp:ListItem> <asp:ListItem>Item 5</asp:ListItem> <asp:ListItem>Item 6</asp:ListItem> </asp:RadioButtonList> </body> </html>