WbkOpened: function (sender, args);
sender. Event source.
args. Event information.
The WbkOpened event occurs on opening a workbook.
To execute the example, the page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and also add the following code in the handler, that processes document opening event:
//Add a workbook open event handler tsService.WbkOpened.add(function(){ alert("Workbook is opened") });
After executing the example on page loading, after the workbook opens, the following message appears: Workbook is opened.