DataConnectionCollection.Item プロパティ (String)
コレクション内の名前で指定された DataConnection オブジェクトへの参照を取得します。
名前空間: Microsoft.Office.InfoPath
アセンブリ: Microsoft.Office.InfoPath (Microsoft.Office.InfoPath.dll)
構文
'宣言
Public MustOverride ReadOnly Default Property Item ( _
name As String _
) As DataConnection
Get
'使用
Dim instance As DataConnectionCollection
Dim name As String
Dim value As DataConnection
value = instance(name)
public abstract DataConnection this[
string name
] { get; }
パラメーター
- name
型: System.String
取得する DataConnection オブジェクトの名前。
プロパティ値
型: Microsoft.Office.InfoPath.DataConnection
指定されたオブジェクト。
解説
Item プロパティから返された DataConnection オブジェクトへの参照を設定した後、対応するデータ接続用の適切な型にオブジェクトをキャストすると、その任意のプロパティおよびメソッドにアクセスできるようになります。たとえば、電子メールでフォームを送信するためのデータ接続のプロパティとメソッドにアクセスするには、返された DataConnection オブジェクトを EmailSubmitConnection 型にキャストする必要があります。
このメンバーには、制約なしでアクセスできます。
この型またはメンバーには、Microsoft InfoPath Filler または Web ブラウザーで開かれたフォームを実行中のコードからアクセスできます。
例
次の例では、"Employees" という名前の DataConnection オブジェクトを DataConnectionCollection から取得し、AdoQueryConnection 型 (Access または SQL Server のデータベースからデータを取得するためのデータ接続を表す型) にキャストしています。
// Get the Employees connection from the
// DataConnections collection.
AdoQueryConnection myAdoQueryConnection =
(AdoQueryConnection)(this.DataConnections["Employees"]);
' Get the Employees connection from the
' DataConnections collection.
Dim myAdoQueryConnection As AdoQueryConnection = _
DirectCast(Me.DataConnections("Employees"), AdoQueryConnection)