GcSpread.Sheets Namespace > Row type : tabStop Method |
true
to set focus to the cells in the row using the Tab key.
var instance = new GcSpread.Sheets.Row(sheet, index, sheetArea); var returnValue; // Type: boolean returnValue = instance.tabStop(value);
function tabStop( value : boolean ) : boolean;
true
to set focus to the cells in the row using the Tab key.true
if the user can set focus to the cells in the row using the Tab key; otherwise, false
.activeSheet.getCell(1,1).tabStop(false); activeSheet.getRow(1).tabStop(false); activeSheet.getColumn(1).tabStop(false);