欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP.NET RepeatDirection 屬性

定義和用法

RepeatDirection 屬性用于獲取或設置 RadioButtonList 中的項目是垂直顯示還是水平顯示

語法

<asp:RadioButtonList RepeatDirection="mode" runat="server">
some content
</asp:RadioButtonList >
屬性 描述
mode

規(guī)定 RadioButtonList 中項目的布局方向。

可能的值:

  • Horizontal - 項目水平顯示
  • Vertical - 默認。項目垂直顯示。

實例

下面的例子設置了 RadioButtonList 控件的 RepeatDirection:

<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" RepeatDirection="Horizontal">

Some content

</asp:RadioButtonList>
</form>

實例

設置 RadioButtonList 控件的 RepeatDirection