Get xPath OnContextChange

V

vbdev

Hi,

I have a IP-C# project. I am using the code below to get the node name
associated with a control on my form.
public void OnContextChange(DocContextChangeEvent e)

{

if (e.Type == "ContextNode")

{

string sNodeName=e.Context.nodeName;

thisXDocument.UI.Alert(sNodeName);

return;

}

}



QUESTION: How can I get the Full xPath of the same current node?



Thanks



vbdev
 
Top