次の方法で共有


WebPartDescriptionCollection.Item[] プロパティ

定義

コレクションのインデックスまたは一意の文字列識別子に基づいて、コレクションの特定のメンバーを取得します。

オーバーロード

Item[Int32]

コレクション内のインデックスに基づいてコレクションのメンバーを取得します。

Item[String]

一意の文字列識別子に基づいてコレクションのメンバーを取得します。

Item[Int32]

コレクション内のインデックスに基づいてコレクションのメンバーを取得します。

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

パラメーター

index
Int32

特定の WebPartDescription の、コレクション内でのインデックス。

プロパティ値

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

注釈

Item[]インデクサーを使用すると、インデックスによってコレクション内の基になるWebPartDescriptionオブジェクトにWebPartDescriptionCollectionアクセスできます。

こちらもご覧ください

適用対象

Item[String]

一意の文字列識別子に基づいてコレクションのメンバーを取得します。

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

パラメーター

id
String

コレクション内の特定の WebPartDescription の一意な識別子としての役割を果たす文字列。

プロパティ値

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

注釈

イン Item[] デクサーを使用すると、一意の WebPartDescription 識別子に従ってコレクション内の WebPartDescriptionCollection オブジェクトにアクセスできます。

こちらもご覧ください

適用対象