SharePointListRWQueryConnection.ListId プロパティ
SharePointListRWQueryConnection オブジェクトに関連付けられた SharePoint リストのリスト ID を取得または設定します。
名前空間: Microsoft.Office.InfoPath
アセンブリ: Microsoft.Office.InfoPath (Microsoft.Office.InfoPath.dll)
構文
'宣言
Public MustOverride Property ListId As String
Get
Set
'使用
Dim instance As SharePointListRWQueryConnection
Dim value As String
value = instance.ListId
instance.ListId = value
public abstract string ListId { get; set; }
プロパティ値
型: System.String
SharePoint リストを識別する GUID。
解説
このメンバーには、現在開いているフォームと同じドメインで実行中のフォーム、またはクロスドメインのアクセス許可が与えられたフォームのみがアクセスできます。
この型またはメンバーには、Microsoft InfoPath Filler または Web ブラウザーで開かれたフォームを実行中のコードからアクセスできます。
例
次のコード例では、ListId プロパティによって返される値に文字列変数を設定しています。
SharePointListRWQueryConnection spConnection = (SharePointListRWQueryConnection)this.DataConnections["Contacts"];
string spListID = spConnection.ListId.ToString();
Dim spConnection As SharePointListRWQueryConnection = _
DirectCast(Me.DataConnections("Contacts"), _
SharePointListRWQueryConnection)
Dim spListID As String = _
spConnection.ListId.ToString()
関連項目
参照
SharePointListRWQueryConnection クラス