次の方法で共有


XDocuments2.Count プロパティ

コレクションに格納されている XDocument オブジェクトの数を取得します。

このプロパティは、CLS に準拠していません。  

名前空間: Microsoft.Office.Interop.InfoPath.SemiTrust
アセンブリ: Microsoft.Office.Interop.InfoPath.SemiTrust (microsoft.office.interop.infopath.semitrust.dll 内)

構文

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

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

コメント

メモ重要 :

このメンバは制限なしでアクセスできます。

次の例では、for ループ内で XDocuments コレクションの Count プロパティを使用して、XDocument オブジェクトのコレクションを反復処理し、現在開いているフォームの URI (Uniform Resource Identifier) を示すメッセージ ボックスを表示します。

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

関連項目

参照

XDocuments2 インターフェイス
XDocuments2 のメンバ
Microsoft.Office.Interop.InfoPath.SemiTrust 名前空間