SpreadJS Documentation
resizable Method
Set to true to let users resize the column.
Gets or sets if the column can be resized by the user.
Syntax
var instance = new GcSpread.Sheets.Column(sheet, index, sheetArea);
var returnValue; // Type: boolean
returnValue = instance.resizable(value);
function resizable( 
   value : boolean
) : boolean;

Parameters

value
Set to true to let users resize the column.

Return Value

true if the column can be resized; otherwise, false.
Example
This example uses the resizable method.
activeSheet.getColumn(3).resizable(true);
Remarks
The default value is true.
See Also

Reference

Column type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.