This example sets the cell's background color to red.
TextTables tables = document.getTables(); TextTable table = tables.item(1); TextTableCell cell = table.cell(2,1); cell.setBackTransparent(false); cell.setBackgroundColor(application.RGB(255, 0, 0));
Related information