Example: item method

This script gets the second column of the first table.

  TextTables tables = document.getTables();
  TextTable table = tables.item(1);
  TextTableColumns columns = table.getColumns();
  TextTableColumn column = columns.item(2);

Related information

item method