>     Can access text within a table structure in a word doc?
>     Is there posible?

The following code will get the text from all the tables in a document

Range r = doc.getRange();

for (int x = 0; x < r.numParagraphs(); x++)
{
  Paragraph par = r.getParagraph(x).;
  if (par.isInTable())
  {
    Table table = r.getTable(par);
    String tableTxt = table.text();
    x += (table.numParagraphs() - 1);
  }
  
}

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to