SpreadJS Documentation
setFrozenRowCount Method
The number of rows to freeze.
Set the number of frozen rows.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: any
value = instance.setFrozenRowCount(rowCount);
function setFrozenRowCount( 
   rowCount : number
) : any;

Parameters

rowCount
The number of rows to freeze.
Example
This example creates a frozen row.
sheet.setRowCount(10);
sheet.setColumnCount(8);
sheet.setFrozenRowCount(1);
Remarks
The default value is 0.
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.