Example: item method

This example gets the second cell of first table.

  TextTables tables = document.getTables();
  TextTable table = tables.item(1);
  TextTableCells cells = table.getCells();
  TextTableCell cell = cells.item(2);

Related information

item method