SetFreezePanesType
function SetFreezePanesType(FreezePaneType: FreezePaneType = null): void
Description
Sets a type to the freeze panes.
Parameters
The freeze panes type ("null" to unfreeze).
Returns
void
Try It
Api.SetFreezePanesType('column');
var oWorksheet = Api.GetActiveSheet();
var oFreezePanes = oWorksheet.GetFreezePanes();
var oRange = oFreezePanes.GetLocation();
oWorksheet.GetRange("A1").SetValue("Location: ");
oWorksheet.GetRange("B1").SetValue(oRange.GetAddress());