SpreadJS Documentation
resizable Method
Set to true to make the row resizable.
Gets or sets whether the row can be resized by the user.
Syntax
var instance = new GcSpread.Sheets.Row(sheet, index, sheetArea);
var returnValue; // Type: boolean
returnValue = instance.resizable(value);
function resizable( 
   value : boolean
) : boolean;

Parameters

value
Set to true to make the row resizable.

Return Value

true if the user can resize the row; otherwise, false.
Example
This example uses the resizable method.
activeSheet.getRow(2).resizable(false);
Remarks
The default value is true.
See Also

Reference

Row type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.