SpreadJS Documentation
setFrozenTrailingRowCount Method
The number of rows to freeze at the bottom of the sheet.
Sets the number of trailing frozen rows.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: any
value = instance.setFrozenTrailingRowCount(rowCount);
function setFrozenTrailingRowCount( 
   rowCount : number
) : any;

Parameters

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

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.