Page 1 of 1

How to get the table's itemno by a rvdata of cell

Posted: Sun Feb 24, 2008 6:41 am
by li_nummereins
Refering to the quiz in the demos, I make a program.There are several tables in my document, only one can be chosen. How do I get the table's itemno in the rv through RVDATA of the CELL?I want to judge the table whether to can be operated by the table's itemtext.

Posted: Sun Feb 24, 2008 10:33 am
by Sergey Tkachenko
table := cell.GetTable;
ItemNo := table.GetMyItemNo;

Posted: Mon Feb 25, 2008 2:30 am
by li_nummereins
Thank you very much.