DataConnectionCollection.Item プロパティ (Int32)
コレクション内のインデックスで指定された DataConnection オブジェクトへの参照を取得します。
名前空間: Microsoft.Office.InfoPath
アセンブリ: Microsoft.Office.InfoPath (microsoft.office.infopath.dll 内)
構文
'宣言
Public MustOverride ReadOnly Default Property Item ( _
index As Integer _
) As DataConnection
'使用
Dim instance As DataConnectionCollection
Dim index As Integer
Dim value As DataConnection
value = instance(index)
public abstract DataConnection this [
int index
] { get; }
パラメータ
- index
取得する DataConnection オブジェクトのゼロベースのインデックス。
プロパティ値
取得する DataConnection オブジェクトのゼロベースのインデックス。
コメント
Item プロパティから返された DataConnection オブジェクトへの参照を設定した後、対応するデータ接続用の適切な型にオブジェクトをキャストすると、その任意のプロパティおよびメソッドにアクセスできるようになります。たとえば、電子メールでフォームを送信するためのデータ接続のプロパティとメソッドにアクセスするには、返された DataConnection オブジェクトを EmailSubmitConnection 型にキャストする必要があります。
重要 : |
---|
特定のデータ接続のインデックス値が、バージョン間で同じになったり、またはで同じになる保証はありません。InfoPath と Web ブラウザとで (Microsoft InfoPath Forms Services 2007 から、または InfoPath Forms Services を実行している Office SharePoint Server 2007 上の適切に構成されたドキュメント ライブラリから) 同じフォーム テンプレートを開いた場合のセッション間で同じになる保証はありません。すべての状況で確実に同じデータ接続を開くには、インデックス値を指定するのではなく、DataConnectionCollection.Item(String) メソッドを使用して、名前によって明示的にデータ接続を開いてください。 |
このメンバは制限なしでアクセスできます。
この型またはメンバは、Microsoft Office InfoPath 2007 または Web ブラウザで開いているフォームで実行されているコードからのみアクセスできます。
例
次の例では、DataConnectionCollection の最初の DataConnection オブジェクトを取得して、EmailSubmitConnection 型にキャストしています。
// Get the first connection from the
// DataConnections collection.
EmailSubmitConnection myEmailSubmitConnection =
(EmailSubmitConnection)(this.DataConnections[0]);
' Get the first connection from the
' DataConnections collection.
Dim myEmailSubmitConnection As EmailSubmitConnection = _
DirectCast(Me.DataConnections(0), EmailSubmitConnection)
関連項目
参照
DataConnectionCollection クラス
DataConnectionCollection のメンバ
Microsoft.Office.InfoPath 名前空間