getActiveSheet()
Description
Returns the sheet that is currently active
Usage
getActiveSheet(): object;
Returns
The method returns an object with the name and id attributes of the active sheet
Example
const spreadsheet = new dhx.Spreadsheet("spreadsheet", {});
spreadsheet.parse(data);
// returns {name: "sheet", id: "u1614675531904"}
spreadsheet.getActiveSheet();
Change log: Added in v4.1