LanerBoxView.EnableTabSheetActions

Syntax

EnableTabSheetActions : Boolean;

Description

The EnableTabSheetActions property determines whether table elements can be selected.

Parameters

Use JSON or the setEnableTabSheetActions method to set the property value and the getEnableTabSheetActions method to get the property value.

Example

Executing the example requires that HTML page contains the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component).

// Get workbook data area
var dataView = workbookBox.getDataView();
// Get workbook table
var lanerBoxView = dataView.getGridView();
// Prohibit selection of table elements
lanerBoxView.setEnableTabSheetActions(false);

After executing the example selection of table elements is prohibited.

See also:

LanerBoxView