?
This document uses PHP Chinese website manual Release
RepeatDirection 屬性用于獲取或設置 RadioButtonList 中的項目是垂直顯示還是水平顯示。
<asp:RadioButtonList RepeatDirection="mode" runat="server">
Some Content
</asp:RadioButtonList >
屬性 | 描述 |
---|---|
mode | 規(guī)定 RadioButtonList 中項目的布局方向。 可能的值:
|
下面的實例設置了 RadioButtonList 控件的 RepeatDirection:
<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" RepeatDirection="Horizontal">
Some content
</asp:RadioButtonList>
</form>