共用方式為


ViewInfos.Count 屬性

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

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

語法

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

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

範例

在下列範例中,Count 屬性是用於 for 迴圈內,以逐一查看 ViewInfo 物件集合,並顯示訊息方塊,指出表單中執行的每個檢視名稱:

for (int i=0; i < thisXDocument.ViewInfos.Count; i++)
{
 thisXDocument.UI.Alert("View name: " + thisXDocument.ViewInfos[i].Name);
}

請參閱

參考

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