WindowCollection.Count プロパティ
Window コレクションに含まれている WindowCollection オブジェクトの数を取得します。
名前空間: Microsoft.Office.InfoPath
アセンブリ: Microsoft.Office.InfoPath (Microsoft.Office.InfoPath.dll)
構文
'宣言
Public MustOverride ReadOnly Property Count As Integer
Get
'使用
Dim instance As WindowCollection
Dim value As Integer
value = instance.Count
public abstract int Count { get; }
プロパティ値
型: System.Int32
WindowCollection コレクションに含まれている Window オブジェクトの数。
解説
このメンバーには、制約なしでアクセスできます。
この型またはメンバーには、Microsoft InfoPath Filler で開かれたフォームを実行中のコードからのみアクセスできます。
例
次の例は、変数を WindowCollection コレクション内のウィンドウの数に設定します。
int windowCount = this.Application.Windows.Count;
Dim windowCount As Integer = Me.Application.Windows.Count