次の方法で共有


WebPartZoneCollection.Item[] プロパティ

定義

コレクションにおける位置または一意の識別子に基づいて特定のメンバーを返します。

オーバーロード

Item[Int32]

整数を渡すことによって、コレクションの特定のメンバーを返します。

Item[String]

一意の識別子を渡すことによって、コレクションの特定のメンバーを返します。

Item[Int32]

整数を渡すことによって、コレクションの特定のメンバーを返します。

public:
 property System::Web::UI::WebControls::WebParts::WebPartZoneBase ^ default[int] { System::Web::UI::WebControls::WebParts::WebPartZoneBase ^ get(int index); };
public System.Web.UI.WebControls.WebParts.WebPartZoneBase this[int index] { get; }
member this.Item(int) : System.Web.UI.WebControls.WebParts.WebPartZoneBase
Default Public ReadOnly Property Item(index As Integer) As WebPartZoneBase

パラメーター

index
Int32

コレクション内の特定の WebPartZone のインデックス番号。

プロパティ値

コレクション内の指定したインデックス位置にある WebPartZone

注釈

Item[]プロパティを使用すると、コレクション内のWebPartZone序数をWebPartZoneCollection表すインデックス番号を使用して、コレクション内のオブジェクトにアクセスできます。

こちらもご覧ください

適用対象

Item[String]

一意の識別子を渡すことによって、コレクションの特定のメンバーを返します。

public:
 property System::Web::UI::WebControls::WebParts::WebPartZoneBase ^ default[System::String ^] { System::Web::UI::WebControls::WebParts::WebPartZoneBase ^ get(System::String ^ id); };
public System.Web.UI.WebControls.WebParts.WebPartZoneBase this[string id] { get; }
member this.Item(string) : System.Web.UI.WebControls.WebParts.WebPartZoneBase
Default Public ReadOnly Property Item(id As String) As WebPartZoneBase

パラメーター

id
String

コレクション内の特定の WebPartZone の一意の識別子。

プロパティ値

ID が id の値に等しい、コレクション内の最初の WebPartZone

注釈

Item[]プロパティを使用すると、特定のゾーンのWebPartZone文字列識別子をWebPartZoneCollection使用して、コレクション内のオブジェクトにアクセスできます。 文字列識別子の一致はすべて大文字と小文字が区別されません。

こちらもご覧ください

適用対象