loadMeasures ()
The loadMeasures method loads spreadsheet structure.
To execute the example the HTML page must contain the GridBox component named grid (see Example of Placing the GridBox Component). Load spreadsheet structure:
var source = grid.getTableSource()
source.MeasuresLoaded.add(function (sender, args)
{
console.log(args.Data, args.Selection)
})
source.loadMeasures()
After executing the example table structure is loaded, and the browser console displays objects that contain descriptions of the table structure and selected cell ranges.
See also: