XDocuments2.Count 属性

定义

获取集合中包含的对象数 XDocument 的计数。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

属性值

实现

示例

在以下示例中,XDocuments 集合的 Count 属性用在 for 循环中,以在 XDocument 对象的集合中进行迭代,并显示一个消息框以指示当前打开的每个表单的统一资源标识符 (URI) 位置:

for (int i=0; i &lt; thisApplication.XDocuments.<span class="label">Count</span>; i++)
{
   thisXDocument.UI.Alert("XDocument URI: " + thisApplication.XDocuments[i].URI);
}

注解

重要说明:可以不受限制地访问此成员。

适用于