Spread.Sheets Documentation
resizable Method
Set to true to make the row resizable.
Gets or sets whether the row or column can be resized by the user.
Syntax
var instance = new GC.Spread.Sheets.CellRange(sheet, row, col, rowCount, colCount, sheetArea);
var returnValue; // Type: any
returnValue = instance.resizable(value);
function resizable( 
   value : boolean
) : any;

Parameters

value
Set to true to make the row resizable.

Return Value

If no value is set, returns whether the user can resize the row; otherwise, returns the row or column.
Example
The following examples use the resizable method.
activeSheet.getRange(2, -1, 1, -1, GC.Spread.Sheets.SheetArea.viewport).resizable(false);
activeSheet.getRange(-1, 3, -1, 1. GC.Spread.Sheets.SheetArea.viewport).resizable(true);
Remarks
The default value is true.
See Also

Reference

CellRange type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.