SpreadJS Documentation
getFrozenRowCount Method
Gets the number of frozen rows.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: number
value = instance.getFrozenRowCount();
function getFrozenRowCount() : number;

Return Value

The number of frozen rows.
Example
This example returns the frozen row and column counts.
var ccount = activeSheet.getFrozenColumnCount();
var rcount = activeSheet.getFrozenRowCount();
alert(ccount);
alert(rcount);
Remarks
The default value is 0.
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.