Example: BackColor property

This example sets a red background color for the second row.

  TextTables tables = document.getTables();
  TextTable table = tables.item(1);
  TextTableRows rows = table.getRows();
  TextTableRow row = rows.item(2);
  row.setBackTransparent(false);
  row.setBackgroundColor(application.RGB(255, 0, 0));

Related information

BackColor property