SpreadJS Documentation
tabStop Method
Set to true to set focus to the cells in the column using the Tab key.
Gets or sets a value that indicates whether the user can set focus to the cells in the column using the Tab key.
Syntax
var instance = new GcSpread.Sheets.Column(sheet, index, sheetArea);
var returnValue; // Type: boolean
returnValue = instance.tabStop(value);
function tabStop( 
   value : boolean
) : boolean;

Parameters

value
Set to true to set focus to the cells in the column using the Tab key.

Return Value

true if the user can set focus to the cells in the column using the Tab key; otherwise, false.
Example
This example sets the tabStop method.
activeSheet.getCell(1,1).tabStop(false);
activeSheet.getRow(1).tabStop(false);
activeSheet.getColumn(1).tabStop(false);
See Also

Reference

Column type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.