cancel
Showing results for 
Search instead for 
Did you mean: 

the retrieval function of Table

Former Member
0 Kudos

Hi,

The method is not understood though I want to apply

the retrieval function to Table.

Could you teach the method of putting the retrieval function on Table?

If the sample code etc. can be obtained if possible,

I am glad.

My best regards.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello BESS,


// Iterate through the table node
int size = wdContext.node<nodeName>.size();
for (int i = 0 ; i < size ; i++ )
{
   IPrivate<viewName>.I<nodeName>Element element =      
   wdContext.node<nodeName>().get<nodeName>ElementAt(i);
   
   /*
    * Get the values from each row   
   */  
   
   element.get<attributeName1> ;
   element.get<attributeName2> ;
}

Balakrishnan

Former Member
0 Kudos

hi,

what do you mean by retreival function in table?

Do you mean retreiving the selected element

Explain the scenario

Regards

Rohit