DocContextChangeEvent.Context Property

Definition

Gets a reference to the XML Document Object Model (DOM) node that is the new context node provided by DocContextChangeEventObject object.

public:
 property Microsoft::Office::Interop::InfoPath::Xml::IXMLDOMNode ^ Context { Microsoft::Office::Interop::InfoPath::Xml::IXMLDOMNode ^ get(); };
public Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNode Context { get; }
member this.Context : Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNode
Public ReadOnly Property Context As IXMLDOMNode

Property Value

Examples

In the following example, a node named lastChanged is updated in response to context changes:

public void OnContextChange(DocContextChangeEvent e)
{
 if ( e.Type == "ContextNode" && !e.IsUndoRedo )
 {
  IXMLDOMNode contextNode = e.<span class="label">Context</span>;
  IXMLDOMNode lastChangedNode = thisXDocument.DOM.selectSingleNode("my:lastChanged");
  lastChangedNode.text = contextNode.nodeName;
 }
}

Applies to