DesignerOptionService.DesignerOptionCollection.Item[] プロパティ

定義

指定したインデックス位置にある子コレクションを取得します。

オーバーロード

Item[Int32]

指定したインデックス位置にある子コレクションを取得します。

Item[String]

指定した名前を持つ子コレクションを取得します。

Item[Int32]

ソース:
DesignerOptionService.cs
ソース:
DesignerOptionService.cs
ソース:
DesignerOptionService.cs

指定したインデックス位置にある子コレクションを取得します。

public:
 property System::ComponentModel::Design::DesignerOptionService::DesignerOptionCollection ^ default[int] { System::ComponentModel::Design::DesignerOptionService::DesignerOptionCollection ^ get(int index); };
public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[int index] { get; }
public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection? this[int index] { get; }
member this.Item(int) : System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection
Default Public ReadOnly Property Item(index As Integer) As DesignerOptionService.DesignerOptionCollection

パラメーター

index
Int32

取得する子コレクションの、0 から始まるインデックス。

プロパティ値

指定したインデックス位置にある子コレクション。

適用対象

Item[String]

ソース:
DesignerOptionService.cs
ソース:
DesignerOptionService.cs
ソース:
DesignerOptionService.cs

指定した名前を持つ子コレクションを取得します。

public:
 property System::ComponentModel::Design::DesignerOptionService::DesignerOptionCollection ^ default[System::String ^] { System::ComponentModel::Design::DesignerOptionService::DesignerOptionCollection ^ get(System::String ^ name); };
public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[string name] { get; }
public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection? this[string name] { get; }
member this.Item(string) : System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection
Default Public ReadOnly Property Item(name As String) As DesignerOptionService.DesignerOptionCollection

パラメーター

name
String

子コレクションの名前。

プロパティ値

name パラメーターで指定された名前を持つ子コレクション。名前が見つからない場合は null

注釈

名前の検索では、大文字と小文字は区別されません。

適用対象