_XDocument3.DataObjects 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取对 DataObjectsCollection 与窗体关联的集合的引用。
public:
property Microsoft::Office::Interop::InfoPath::DataObjectsCollection ^ DataObjects { Microsoft::Office::Interop::InfoPath::DataObjectsCollection ^ get(); };
public Microsoft.Office.Interop.InfoPath.DataObjectsCollection DataObjects { get; }
member this.DataObjects : Microsoft.Office.Interop.InfoPath.DataObjectsCollection
Public ReadOnly Property DataObjects As DataObjectsCollection
属性值
对 DataObjectsCollection 与窗体关联的集合的引用。
实现
示例
在以下示例中,对象的 DataObjects 属性 XDocument 用于设置对“CityList”辅助数据源的引用:
object objDataObject;
objDataObject = thisXDocument.<span class="label">DataObjects</span>["CityList"];
在以下示例中,作为 OnClick 窗体上按钮的事件处理程序实现,对象的 DataObjects 属性 XDocument 用于设置对集合的 DataObjectsCollection 引用。 然后,代码循环访问集合,并显示它包含的每个 DataSourceObject 对象的位置索引和名称:
public void ShowDataObjectNames_OnClick(DocActionEvent e)
{
// Set a reference to the DataObjects collection.
DataObjectsCollection dataObjects = thisXDocument.<span class="label">DataObjects</span>;
// Loop through the collection and display the name
// of each DataObject object that it contains.
for (int i=0; i < dataObjects.Count; i++)
{
thisXDocument.UI.Alert("Data object " + i + ": " + dataObjects[i].Name);
}
}
在以下示例中,对象的 DataObjects 属性 XDocument 用于设置对“CityList”辅助数据源的引用:
object objDataObject;
objDataObject = thisXDocument.<span class="label">DataObjects</span>["CityList"];
在以下示例中,作为 OnClick 窗体上按钮的事件处理程序实现,对象的 DataObjects 属性 XDocument 用于设置对集合的 DataObjectsCollection 引用。 然后,代码循环访问集合,并显示它包含的每个 DataSourceObject 对象的位置索引和名称:
public void ShowDataObjectNames_OnClick(DocActionEvent e)
{
// Set a reference to the DataObjects collection.
DataObjectsCollection dataObjects = thisXDocument.<span class="label">DataObjects</span>;
// Loop through the collection and display the name
// of each DataObject object that it contains.
for (int i=0; i < dataObjects.Count; i++)
{
thisXDocument.UI.Alert("Data object " + i + ": " + dataObjects[i].Name);
}
}
注解
DataObjects 集合提供以编程方式对表单的辅助数据源的访问。 每个辅助数据源包含在 DataObjects 集合中的 对象DataSourceObject中。