亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

ASP.NET RepeatDirection 屬性

定義和用法

RepeatDirection 屬性用于獲取或設(shè)置 RadioButtonList 中的項(xiàng)目是垂直顯示還是水平顯示

語(yǔ)法

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

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

可能的值:

  • Horizontal - 項(xiàng)目水平顯示
  • Vertical - 默認(rèn)。項(xiàng)目垂直顯示。

實(shí)例

下面的例子設(shè)置了 RadioButtonList 控件的 RepeatDirection:

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

Some content

</asp:RadioButtonList>
</form>

實(shí)例

設(shè)置 RadioButtonList 控件的 RepeatDirection