TSService.getMetaAttributesSource

Syntax

getMetaAttributesSource (wbk, metadata, callback);

Parameters

wbk. Sets workbook, an instance of the PP.TS.Workbook class.

metadata. Sets metadata with settings.

callback. Callback function call.

Description

The getMetaAttributesSource method returns source of the table included into metadata.

Example

To execute the example, the page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), with the wbk variable containing workbook and with the tsService variable containing workbook service. Enter the following code into the command console:

       MData = wbk.getMetadata();
       Book = wbk.getActiveSheet();
       tsService.getMetaAttributesSource(Book, MData);

After executing the example the console console displays data table source.

See also:

TSService