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

Parameters

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

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.