SharepointListAdapter2.Query 方法
從關聯的資料中繼層讀取資料。
**命名空間:**Microsoft.Office.Interop.InfoPath
**組件:**Microsoft.Office.Interop.InfoPath (於 microsoft.office.interop.infopath.dll 中)
語法
'宣告
<DispIdAttribute(9)> _
Sub Query
'用途
Dim instance As SharepointListAdapter2
instance.Query
[DispIdAttribute(9)]
void Query ()
備註
如果 QueryAllowed 屬性為 false,則表示 Query 方法失敗。
範例
下列範例會叫用 Query 方法,這是連接至名稱為 "SharePoint list" 的 SharePoint 清單之 [資料連線] 的方法。如果 Query 方法失敗,則會顯示訊息方塊:
SharepointListAdapter SPList = ((SharepointListAdapter)thisXDocument.DataAdapters[“SharePoint list”]);
try
{
SPList.Query();
}
catch (Exception ex)
{
thisXDocument.UI.Alert("Failed to query.\n\n" + ex.Message);
}
請參閱
參考
SharepointListAdapter2 介面
SharepointListAdapter2 成員
Microsoft.Office.Interop.InfoPath 命名空間