SpreadJS Documentation
setFrozenColumnCount Method
The number of columns to freeze.
Sets the number of frozen columns.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: any
value = instance.setFrozenColumnCount(colCount);
function setFrozenColumnCount( 
   colCount : number
) : any;

Parameters

colCount
The number of columns to freeze.
Example
This example creates a frozen column.
sheet.setRowCount(10);
sheet.setColumnCount(8);
sheet.setFrozenColumnCount(1);
Remarks
The default value is 0.
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.