update.put(PROPERTY.HTMLTABLE_CELL_STYLE, true);
Txn.get().getTxnContext().save(update);
}
public void setHorizontalAlignment(final int row, final int column, final PHorizontalAlignment align) {
final Update update = new Update(getID());
update.put(PROPERTY.ROW, row);
update.put(PROPERTY.COLUMN, column);
update.put(PROPERTY.CELL_HORIZONTAL_ALIGNMENT, align.ordinal());
update.put(PROPERTY.HTMLTABLE_CELL_STYLE, true);
Txn.get().getTxnContext().save(update);
}