RepeaterItemCollection コンストラクタ
RepeaterItemCollection クラスの新しいインスタンスを初期化します。
名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)
構文
'宣言
Public Sub New ( _
items As ArrayList _
)
'使用
Dim items As ArrayList
Dim instance As New RepeaterItemCollection(items)
public RepeaterItemCollection (
ArrayList items
)
public:
RepeaterItemCollection (
ArrayList^ items
)
public RepeaterItemCollection (
ArrayList items
)
public function RepeaterItemCollection (
items : ArrayList
)
適用できません。
パラメータ
- items
コレクションを初期化するために使用する項目を保持する System.Collections.ArrayList。
解説
このコンストラクタを使用して、RepeaterItemCollection クラスの新しいインスタンスを作成し、初期化します。
使用例
Sub Page_Load(Sender As Object, e As EventArgs)
If Not IsPostBack Then
Dim myDataSource As New ArrayList()
myDataSource.Add(New PositionData("Item 1", "$6.00"))
myDataSource.Add(New PositionData("Item 2", "$7.48"))
myDataSource.Add(New PositionData("Item 3", "$9.96"))
' Initialize the RepeaterItemCollection using the ArrayList as the data source.
Dim myCollection As New RepeaterItemCollection(myDataSource)
myRepeater.DataSource = myCollection
myRepeater.DataBind()
End If
End Sub 'Page_Load
void Page_Load(Object Sender, EventArgs e)
{
if (!IsPostBack)
{
ArrayList myDataSource = new ArrayList();
myDataSource.Add(new PositionData("Item 1", "$6.00"));
myDataSource.Add(new PositionData("Item 2", "$7.48"));
myDataSource.Add(new PositionData("Item 3", "$9.96"));
// Initialize the RepeaterItemCollection using the ArrayList as the data source.
RepeaterItemCollection myCollection = new RepeaterItemCollection(myDataSource);
myRepeater.DataSource = myCollection;
myRepeater.DataBind();
}
}
void Page_Load(Object Sender, EventArgs e)
{
if (!(get_IsPostBack())) {
ArrayList myDataSource = new ArrayList();
myDataSource.Add(new PositionData("Item 1", "$6.00"));
myDataSource.Add(new PositionData("Item 2", "$7.48"));
myDataSource.Add(new PositionData("Item 3", "$9.96"));
// Initialize the RepeaterItemCollection using the
// ArrayList as the data source.
RepeaterItemCollection myCollection
= new RepeaterItemCollection(myDataSource);
myRepeater.set_DataSource(myCollection);
myRepeater.DataBind();
}
} //Page_Load
プラットフォーム
Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition
Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。
バージョン情報
.NET Framework
サポート対象 : 3.0,2.0,1.1,1.0
参照
関連項目
RepeaterItemCollection クラス
RepeaterItemCollection メンバ
System.Web.UI.WebControls 名前空間
System.Collections.ArrayList