EaxAnalyzer.TabFocusedCell

Syntax

TabFocusedCell: PP.Ui.TabSheetCoord

Description

The TabFocusedCell property contains coordinates of focused cell in the express report table.

Comments

Use JSON or the setTabFocusedCell method to set the property value, and the getTabFocusedCell method to get the property value.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Select any cell in the express report table, and get its coordinates:

var eaxAnalyzer = expressBox.getSource();
var focusedCell = eaxAnalyzer.getTabFocusedCell();
console.log("Column index: " + focusedCell.colIndex);
console.log("Row index: " + focusedCell.rowIndex);

After executing the example the browser console displays coordinates of a randomly selected express report cell:

Column index: 2
Row index: 3

See also:

EaxAnalyzer