RadioButtonList.RepeatColumns Propriedade
Definição
Obtém ou define o número de colunas a serem exibidas no controle RadioButtonList.Gets or sets the number of columns to display in the RadioButtonList control.
public:
virtual property int RepeatColumns { int get(); void set(int value); };
[System.ComponentModel.Bindable(true)]
public virtual int RepeatColumns { get; set; }
public virtual int RepeatColumns { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.RepeatColumns : int with get, set
member this.RepeatColumns : int with get, set
Public Overridable Property RepeatColumns As Integer
Valor da propriedade
O número de colunas a serem exibidas no RadioButtonList.The number of columns to display in the RadioButtonList. O padrão é 0, que indica que essa propriedade não está definida.The default is 0, which indicates that this property is not set.
- Atributos
Exceções
O número de colunas é definido com um valor negativo.The number of columns is set to a negative value.
Exemplos
O exemplo de código a seguir demonstra como usar a RepeatColumns propriedade para exibir os itens de um RadioButtonList controle em duas colunas.The following code example demonstrates how to use the RepeatColumns property to display the items of a RadioButtonList control in two columns.
<%@ 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>
<%@ Page Language="VB" 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>
Comentários
Quando a RepeatLayout propriedade é definida como Table , você pode usar essa propriedade para especificar o número de colunas que exibem itens no RadioButtonList controle.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. Se essa propriedade não for definida, o RadioButtonList controle exibirá todos os itens na lista em uma única coluna.If this property is not set, the RadioButtonList control displays all items in the list in a single column.