?
? ????? PHP ??? ???? ??? ?? ??
TextAlign 屬性用于獲取或設(shè)置 RadioButtonList 項目的文本的文本對齊方式。
<asp:RadioButtonList TextAlign="align" runat="server">
Some Content
</asp:RadioButtonList >
屬性 | 描述 |
---|---|
align | 規(guī)定列表項的文本對齊方式。 可能的值:
|
下面的實例把 RadioButtonList 控件中的 TextAlign 屬性設(shè)置為 "Left":
<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" TextAlign="Left">
Some content
</asp:RadioButtonList>
</form>