RadioButtonList.TextAlign Property
Gets or sets the text alignment for the radio buttons within the group.
[Visual Basic] Public Overridable Property TextAlign As TextAlign [C#] public virtual TextAlign TextAlign {get; set;} [C++] public: __property virtual TextAlign get_TextAlign(); public: __property virtual void set_TextAlign(TextAlign); [JScript] public function get TextAlign() : TextAlign; public function set TextAlign(TextAlign);
Property Value
One of the TextAlign values. The default is Right.
Exceptions
| Exception Type | Condition |
|---|---|
| ArgumentException | The label text alignment associated with the radio buttons is not one of the TextAlign values. |
Remarks
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.
Example
[C#, JScript] The following example demonstrates how to use the TextAlign property to display the text associated with the radio buttons on the left of the RadioButtonList control.
[C#] <%@ Page Language="C#" AutoEventWireup="True" %> <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> [JScript] <%@ Page Language="JScript" AutoEventWireup="True" %> <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>
[Visual Basic, C++] No example is available for Visual Basic or C++. To view a C# or JScript example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
RadioButtonList Class | RadioButtonList Members | System.Web.UI.WebControls Namespace | TextAlign