TSService.WbkOpened

Syntax

WbkOpened: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The WbkOpened event occurs on opening a workbook.

Example

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.

TSService