次の方法で共有


XDocuments2.Item[Object] プロパティ

定義

コレクションから指定した XDocument オブジェクトへの参照を取得します。

public:
 property Microsoft::Office::Interop::InfoPath::SemiTrust::XDocument ^ default[System::Object ^] { Microsoft::Office::Interop::InfoPath::SemiTrust::XDocument ^ get(System::Object ^ varIndex); };
public Microsoft.Office.Interop.InfoPath.SemiTrust.XDocument this[object varIndex] { get; }
member this.Item(obj) : Microsoft.Office.Interop.InfoPath.SemiTrust.XDocument
Default Public ReadOnly Property Item(varIndex As Object) As XDocument

パラメーター

varIndex
Object

のメンバー XDocumentsCollectionの位置を指定する式。 数値式の場合、引数は 0 から負の 1 の Count 値までの数値である必要があります。 文字列式の場合、この引数はコレクションのメンバーの URL (Uniform Resource Locator) パスである必要があります。

プロパティ値

実装

Item プロパティはコレクションの既定のXDocumentsCollectionプロパティであるため、次のように使用できます。

XDocument firstDocument;
firstDocument = thisApplication.XDocuments[0];

次の例のように、XDocument の名前を Item メソッドの引数として使用できます。

XDocument myFormDocument;
myFormDocument = thisApplication.XDocuments[@"C:\MyForm.xml"];

注釈

引数に指定された値が varIndex コレクションの既存のメンバーと一致しない場合は、エラーが発生します。

Item プロパティが返す XDocument オブジェクトへの参照を設定すると、そのオブジェクトのすべてのプロパティやメソッドにアクセスできます。

重要: このメンバーには制限なしでアクセスできます。

適用対象