FormCollection.Item[] プロパティ

定義

コレクション内の Form オブジェクトへのアクセスを提供します。

オーバーロード

Item[Int32]

コレクション内の要素を数値インデックスで取得または設定します。

Item[String]

コレクション内の要素を、関連付けられた Form オブジェクトの名前で取得または設定します。

Item[Int32]

コレクション内の要素を数値インデックスで取得または設定します。

public:
 virtual property System::Windows::Forms::Form ^ default[int] { System::Windows::Forms::Form ^ get(int index); };
public virtual System.Windows.Forms.Form this[int index] { get; }
public virtual System.Windows.Forms.Form? this[int index] { get; }
member this.Item(int) : System.Windows.Forms.Form
Default Public Overridable ReadOnly Property Item(index As Integer) As Form

パラメーター

index
Int32

コレクション内の Form の位置。

プロパティ値

指定したインデックスにあるフォーム。

適用対象

Item[String]

コレクション内の要素を、関連付けられた Form オブジェクトの名前で取得または設定します。

public:
 virtual property System::Windows::Forms::Form ^ default[System::String ^] { System::Windows::Forms::Form ^ get(System::String ^ name); };
public virtual System.Windows.Forms.Form this[string name] { get; }
public virtual System.Windows.Forms.Form? this[string? name] { get; }
member this.Item(string) : System.Windows.Forms.Form
Default Public Overridable ReadOnly Property Item(name As String) As Form

パラメーター

name
String

Form の名前。

プロパティ値

指定した名前のフォームを返します。

適用対象