XDocuments2.Item 属性 (Object)
获取一个对集合中指定的 XDocument 对象的引用。
命名空间: Microsoft.Office.Interop.InfoPath.SemiTrust
程序集: Microsoft.Office.Interop.InfoPath.SemiTrust(位于 Microsoft.Office.Interop.InfoPath.SemiTrust.dll 中)
语法
声明
ReadOnly Default Property Item ( _
varIndex As Object _
) As XDocument
Get
用法
Dim instance As XDocuments2
Dim varIndex As Object
Dim value As XDocument
value = instance(varIndex)
XDocument this[
Object varIndex
] { get; }
参数
varIndex
类型:System.Object该表达式指定 XDocumentsCollection 的成员的位置。如果是数值表达式,该参数必须为介于 0 与 Count 的值减去 1 之间的数字。如果是字符串表达式,该参数必须为该集合成员的统一资源定位器 (URL) 路径。
属性值
类型:Microsoft.Office.Interop.InfoPath.SemiTrust.XDocument
实现
备注
如果为 varIndex 参数提供的值与集合的任何现有成员都不匹配,将发生错误。
在设置了对 Item 属性返回的 XDocument 对象的引用之后,可以访问其任何属性或方法。
重要
可以无限制访问此成员。
示例
因为 Item 属性是 XDocumentsCollection 集合的默认属性,所以可按如下方式使用它:
XDocument firstDocument;
firstDocument = thisApplication.XDocuments[0];
可以将 XDocument 的名称用作 Item 方法的参数,如以下示例所示:
XDocument myFormDocument;
myFormDocument = thisApplication.XDocuments[@"C:\MyForm.xml"];