View.GetSelectedNodes 方法

获取一个对 XMLNodesCollection 集合的引用,该集合是基于视图中的当前所选项用 XML 文档对象模型 (DOM) 节点填充的。

命名空间:  Microsoft.Office.Interop.InfoPath.SemiTrust
程序集:  Microsoft.Office.Interop.InfoPath.SemiTrust(位于 Microsoft.Office.Interop.InfoPath.SemiTrust.dll 中)

语法

声明
Function GetSelectedNodes As XMLNodesCollection
用法
Dim instance As View
Dim returnValue As XMLNodesCollection

returnValue = instance.GetSelectedNodes()
XMLNodesCollection GetSelectedNodes()

返回值

类型:Microsoft.Office.Interop.InfoPath.SemiTrust.XMLNodesCollection
一个对 XMLNodesCollection 集合的引用。

备注

如果没有选中视图中的任何项,或只选中了文本,则 GetSelectedNodes 方法将返回空集合。

备注

由于焦点脱离规定在上下文中的控件,如果在视图中某个按钮的 OnClick 事件中使用,GetSelectedNodes 方法将不返回基于当前选择的节点。若要避免此行为,请通过自定义任务窗格、菜单或工具栏使用 GetSelectedNodes 方法。

重要

此成员只能由与当前打开的表单在相同域中运行的表单访问,或者由已授予跨域权限的表单访问。

示例

在以下示例中,ViewObject 对象的 GetSelectedNodes 方法用来基于视图中的当前所选项设置对 XML DOM 节点集合的引用。然后由代码确定是否返回节点,如果返回,则在消息框中显示在 XMLNodesCollection 集合中找到的第一个节点的有关信息。

XMLNodesCollection selectedNodes = thisXDocument.View.GetSelectedNodes();

if (selectedNodes.Count > 0)
{
 thisXDocument.UI.Alert(selectedNodes[0].nodeName + "\n\n" + selectedNodes[0].text);
}

另请参阅

引用

View 接口

View 成员

Microsoft.Office.Interop.InfoPath.SemiTrust 命名空间