Guest
Guest
|
Hi,
I am not sure whether I am posting this in the right user group, but here is
my question:
I want to create a smart tag for xml node. Is it possibe to make a smart tag
for any xml node?
For example, I am loading an Xml file in word document with following
structure.
<Root>
<FirstNode> Node 1 </FirstNode>
</Root>
I want to recognize "FirstNode" which is an xml node as a smart tag.
Please let me know, if any one has any idea about it. |
|
Dmitry Kostochko
Add-in Express team
Posts: 2880
Joined: 2004-04-05
|
You can set the Kind property of the TadxSmartTag component to ktCustom and handle the OnRecognize event. In this case you will get all Word paragraphs in this event handler and will be able to recognize any word as a Smart Tag. The only obstacle I see here is multi-line nodes, i.e. nodes that take more than one string/paragraph.
Sincerely,
ADX Support Team |
|