RadioButtonList.RepeatLayout プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
table
要素、ul
要素、ol
要素、span
要素のいずれを使用してリストを出力するかを指定する値を取得または設定します。
public:
virtual property System::Web::UI::WebControls::RepeatLayout RepeatLayout { System::Web::UI::WebControls::RepeatLayout get(); void set(System::Web::UI::WebControls::RepeatLayout value); };
[System.ComponentModel.Bindable(true)]
public virtual System.Web.UI.WebControls.RepeatLayout RepeatLayout { get; set; }
public virtual System.Web.UI.WebControls.RepeatLayout RepeatLayout { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.RepeatLayout : System.Web.UI.WebControls.RepeatLayout with get, set
member this.RepeatLayout : System.Web.UI.WebControls.RepeatLayout with get, set
Public Overridable Property RepeatLayout As RepeatLayout
プロパティ値
table
要素、ul
要素、ol
要素、span
要素のいずれを使用してリストを出力するかを指定する値。 既定値は、Table です。
- 属性
例外
オプション ボタンのレイアウトが RepeatLayout 値ではありません。
例
次のコード例では、 プロパティを使用 RepeatLayout して、テーブル内のコントロールの項目を RadioButtonList 表示する方法を示します。
<%@ Page Language="C#" AutoEventWireup="True" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>RadioButtonList.RepeatLayout Example</title>
</head>
<body>
<asp:RadioButtonList id="RadioButtonList1"
RepeatColumns = "2"
RepeatDirection="Vertical"
RepeatLayout="Table"
runat="server">
<asp:ListItem>Item 1</asp:ListItem>
<asp:ListItem>Item 2</asp:ListItem>
<asp:ListItem>Item 3</asp:ListItem>
<asp:ListItem>Item 4</asp:ListItem>
<asp:ListItem>Item 5</asp:ListItem>
<asp:ListItem>Item 6</asp:ListItem>
</asp:RadioButtonList>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>RadioButtonList.RepeatLayout Example</title>
</head>
<body>
<asp:RadioButtonList id="RadioButtonList1"
RepeatColumns = "2"
RepeatDirection="Vertical"
RepeatLayout="Table"
runat="server">
<asp:ListItem>Item 1</asp:ListItem>
<asp:ListItem>Item 2</asp:ListItem>
<asp:ListItem>Item 3</asp:ListItem>
<asp:ListItem>Item 4</asp:ListItem>
<asp:ListItem>Item 5</asp:ListItem>
<asp:ListItem>Item 6</asp:ListItem>
</asp:RadioButtonList>
</body>
</html>
注釈
使用可能なオプションの詳細については、 列挙を RepeatLayout 参照してください。
注意
ASP.NET 4 OrderedList の時点では、 と UnorderedListの 2 つのオプションが新しまれています。
一部の RepeatLayout 設定では、水平レイアウトが許可されません。 詳細については、RepeatLayout 列挙型のページをご覧ください。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET