Example: BackTransparent property

This example sets no background color for the cell.

  TextTables tables = document.getTables();
  TextTable table = tables.item(1);
  TextTableCell cell = table.cell(2,1);
  cell.setBackTransparent(true);

Related information

BackTransparent property