Example: Range property

This example inserts some text to the end of the cell.

  TextTables tables = document.getTables();
  TextTable table = tables.item(1);
  TextTableCell cell = table.cell(2,1);
  cell.getRange().insertAfter("insert to the end of the cell");

Related information

Range property