ViewInfos.Count 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取集合中包含的对象数 ViewInfoObject 的 ViewInfosCollection 计数。
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
属性值
示例
在以下示例中,Count 属性用在 for 循环中,以便在 ViewInfo 对象的集合中进行迭代,并显示一个消息框以指示在表单中实现的每个视图的名称:
for (int i=0; i < thisXDocument.ViewInfos.<span class="label">Count</span>; i++)
{
thisXDocument.UI.Alert("View name: " + thisXDocument.ViewInfos[i].Name);
}