ASP.NET RepeatLayout プロパティ
定義と使用法
RepeatLayout プロパティは、RadioButtonList 内のアイテムの表示方法を取得または設定するために使用されます。
構文
<asp:RadioButtonList RepeatLayout="モード" runat="server"> 一部のコンテンツ </asp:RadioButtonList >
属性 | 説明 |
---|---|
モード |
RadioButtonList 内のアイテムのレイアウトを指定します。 可能な値:
|
例
以下の例では、RadioButtonList コントロールの RepeatLayout を設定しています:
<form runat="server"> <asp:RadioButtonList id="rb1" runat="server"> RepeatLayout="Flow"> 一部のコンテンツ </asp:RadioButtonList> </form>
例
- RadioButtonList コントロールの RepeatLayout プロパティを設定する