SpreadJS Documentation
frozenlineColor Method
The color string.
Gets or sets a color string used to represent the frozen line color, such as "red", "#FFFF00", "rgb(255,0,0)", "Accent 5", and so on.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var returnValue; // Type: Object
returnValue = instance.frozenlineColor(value);
function frozenlineColor( 
   value : string
) : Object;

Parameters

value
The color string.

Return Value

The color string used to represent the frozen line color.
Example
This example sets the fozen line color.
activeSheet.setFrozenRowCount(1);
activeSheet.setFrozenColumnCount(1);
activeSheet.frozenlineColor("red");
Remarks
The default value is black.
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.