This example displays the name of a cell.
TextTables tables = document.getTables(); TextTable table = tables.item(1); TextTableCell cell = table.cell(2,1); System.out.println(cell.getName());
Related information
Name property