?
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
RepeatDirection 屬性用于獲取或設(shè)置 CheckBoxList 中的項(xiàng)目垂直顯示還是水平顯示。
<asp:CheckBoxList RepeatDirection="mode" runat="server">
Some Content
</asp:CheckBoxList >
屬性 | 描述 |
---|---|
mode | 規(guī)定 CheckBoxList 中項(xiàng)目的布局方向。 可能的值:
|
下面的實(shí)例設(shè)置了 CheckBoxList 控件的 RepeatDirection:
<form runat="server">
<asp:CheckBoxList id="cb1" runat="server"
RepeatDirection="Horizontal">
Some content
</asp:CheckBoxList>
</form>