RadioButtonList::TextAlign Property
.NET Framework (current version)
Gets or sets the text alignment for the radio buttons within the group.
Assembly: System.Web (in System.Web.dll)
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The label text alignment associated with the radio buttons is not one of the TextAlign values. |
Use this property to specify whether the text associated with the radio buttons appears on the left or right. If this property is set to TextAlign.Right, the text is displayed to the right of the radio button. If this property is set to TextAlign.Left, the text is displayed to the left of the radio button.
The following code example demonstrates how to use the TextAlign property to display the text associated with the radio buttons on the left side of the RadioButtonList control.
<%@ Page Language="C#" AutoEventWireup="True" %> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title>RadioButtonList.TextAlign Example</title> </head> <body> <asp:RadioButtonList id="RadioButtonList1" RepeatColumns = "2" RepeatDirection="Vertical" RepeatLayout="Table" TextAlign="Left" 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>
.NET Framework
Available since 1.1
Available since 1.1
Show: