SpreadJS Documentation
frozenTrailingRowCount Method
GC.Spread.Sheets Namespace > Worksheet type : frozenTrailingRowCount Method
The number of rows to freeze at the bottom of the sheet.
Gets or sets the number of trailing frozen rows of the sheet.
Syntax
var instance = new GC.Spread.Sheets.Worksheet(name);
var value; // Type: any
value = instance.frozenTrailingRowCount(rowCount);
function frozenTrailingRowCount( 
   rowCount : number
) : any;

Parameters

rowCount
The number of rows to freeze at the bottom of the sheet.

Return Value

If no value is set, returns the number of trailing frozen rows; otherwise, returns the worksheet.
Example
This example creates a trailing frozen row.
sheet.setRowCount(10);
sheet.setColumnCount(8);
sheet.frozenTrailingRowCount(1);
Remarks
The default value is 0.
See Also

Reference

Worksheet type