次の方法で共有


ViewInfoCollection.Item プロパティ (Int32)

インデックス値によって指定された ViewInfo オブジェクトを ViewInfoCollection コレクションから取得します。

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

構文

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

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

パラメーター

  • index
    型: System.Int32
    取得する ViewInfo オブジェクトのゼロベースのインデックス。

プロパティ値

型: Microsoft.Office.InfoPath.ViewInfo
ViewInfoCollection コレクションから取得した、指定されたインデックス値に対応する ViewInfo オブジェクト。

例外

例外 条件
IndexOutOfRangeException

指定したインテックスは範囲外です。

解説

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

このメンバーには、制約なしでアクセスできます。

この型またはメンバーには、Microsoft InfoPath Filler または Web ブラウザーで開かれたフォームを実行中のコードからアクセスできます。

次の例は、変数をコレクション内の 1 つ目のビューを表す ViewInfo オブジェクトに設定します。

ViewInfo firstView = this.ViewInfos[0];
Dim firstView As ViewInfo = Me.ViewInfos(0)

関連項目

参照

ViewInfoCollection クラス

ViewInfoCollection メンバー

Item オーバーロード

Microsoft.Office.InfoPath 名前空間