cancel
Showing results for 
Search instead for 
Did you mean: 

deleting a attribute value at perticular index

Former Member
0 Kudos

Hi ,

I have node and attribute to that. i need to delete the attribute value at perticular index. How to do that.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Loop through the node and remove element . i.e.,

for(loop your node){

element = wdContext.node<nodeNAme>().get<Node>ElementAt(i);

wdContext.node<Table>().removeElement(element);

}

Thanks & Regards,

Jhansi Miryala