TableCatView.refreshTableCFormatButton

Syntax

refreshTableCFormatButton();

Description

The refreshTableCFormatButton method refreshes the Conditional Formatting button on the Table: Constructor tool ribbon tab.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Refresh the Conditional Formatting button:

//Get an instance of the PP.Exp.Ui.TableCategory class
eRib = expressBox.getRibbonView();
ribbon = eRib.getControl();
cat = ribbon.getCategories();
group = cat.getItem(cat.getCount() - 1);
tableCat = group.getCategories(True)[0];
// Refresh the Conditional Formatting button
tableCat.refreshTableCFormatButton();

After executing the example the Conditional Formatting button is refreshed.

See also:

TableCatView