共用方式為


XDocuments2.Count 屬性

取得包含在集合中的 XDocument 物件計數。

**命名空間:**Microsoft.Office.Interop.InfoPath
**組件:**Microsoft.Office.Interop.InfoPath (於 microsoft.office.interop.infopath.dll 中)

語法

'宣告
<DispIdAttribute(1)> _
ReadOnly Property Count As Integer
'用途
Dim instance As XDocuments2
Dim value As Integer

value = instance.Count
[DispIdAttribute(1)] 
int Count { get; }

範例

在下列範例中,XDocuments 集合的 Count 屬性是用於在 for 迴圈內逐一查看 XDocument 物件的集合,並顯示訊息方塊,指出每個目前開啟表單的統一資源識別元 (URI) 位置:

for (int i=0; i < thisApplication.XDocuments.Count; i++)
{
   thisXDocument.UI.Alert("XDocument URI: " + thisApplication.XDocuments[i].URI);
}

請參閱

參考

XDocuments2 介面
XDocuments2 成員
Microsoft.Office.Interop.InfoPath 命名空間