次の方法で共有


WindowCollection.Item プロパティ

WindowCollection オブジェクト内の指定された Window オブジェクトへの参照を取得します。

名前空間: Microsoft.Office.InfoPath
アセンブリ: Microsoft.Office.InfoPath (microsoft.office.infopath.dll 内)

構文

'宣言
Public MustOverride ReadOnly Default Property Item ( _
    index As Integer _
) As Window
'使用
Dim instance As WindowCollection
Dim index As Integer
Dim value As Window

value = instance(index)
public abstract Window this [
    int index
] { get; }

パラメータ

  • index
    返される Window オブジェクトのゼロベースのインデックス。

プロパティ値

WindowCollection オブジェクトから取得した、指定されたインデックス値に対応する Window オブジェクト。

コメント

index パラメータに渡す値は、0 からコレクションの Count プロパティより 1 小さい値までの数字でなければなりません。

Item プロパティが返す Window オブジェクトへの参照を取得した後、このオブジェクトのすべてのプロパティとメソッドにアクセスできます。

このメンバは制限なしでアクセスできます。

この型またはメンバは、Microsoft Office InfoPath 2007 で開いているフォームで実行されているコードからのみアクセスできます。

Item プロパティは WindowsCollection クラスの既定のプロパティであるため、次のように使用することはできません。

Window firstWindow = this.Application.Windows[0];
Dim firstWindow As Window  = Me.Application.Windows(0)

関連項目

参照

WindowCollection クラス
WindowCollection のメンバ
Microsoft.Office.InfoPath 名前空間