TableCatView.getTableNumberCombo

Syntax

getTableNumberCombo(): PP.Ui.ComboBox;

Description

The getTableNumberCombo method returns a control for number format 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).

//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];
// Get an control for number format
tableCat.getTableNumberCombo();
// -> [PP.Ui.ComboBox]

After executing the example a control for number format of the Constructor tab is obtained.

See also:

TableCatView