RadioButtonList.RepeatColumns Property

Definition

Gets or sets the number of columns to display in the RadioButtonList control.

C#
[System.ComponentModel.Bindable(true)]
public virtual int RepeatColumns { get; set; }
C#
public virtual int RepeatColumns { get; set; }

Property Value

The number of columns to display in the RadioButtonList. The default is 0, which indicates that this property is not set.

Attributes

Exceptions

The number of columns is set to a negative value.

Examples

The following code example demonstrates how to use the RepeatColumns property to display the items of a RadioButtonList control in two columns.

ASP.NET (C#)
<%@ Page Language="C#" AutoEventWireup="True" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>RadioButtonList.RepeatColumns Example</title>
</head>
<body>

<asp:RadioButtonList id="RadioButtonList1"
      RepeatLayout="Table"
      RepeatColumns = "2" 
      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>

Remarks

When the RepeatLayout property is set to Table, you can use this property to specify the number of columns that display items in the RadioButtonList control. If this property is not set, the RadioButtonList control displays all items in the list in a single column.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also