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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top