XDocuments2.Count プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コレクションに含まれるオブジェクトの XDocument 数を取得します。
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
プロパティ値
実装
例
次の例では、for ループ内で XDocuments コレクションの Count プロパティを使用して、XDocument オブジェクトのコレクションを反復処理し、現在開いているフォームの URI (Uniform Resource Identifier) を示すメッセージ ボックスを表示します。
for (int i=0; i < thisApplication.XDocuments.<span class="label">Count</span>; i++)
{
thisXDocument.UI.Alert("XDocument URI: " + thisApplication.XDocuments[i].URI);
}
注釈
重要: このメンバーには制限なしでアクセスできます。