GC.Spread.Sheets Namespace > Worksheet type : frozenColumnCount Method |
var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: any value = instance.frozenColumnCount(colCount);
function frozenColumnCount( colCount : number ) : any;
var ccount = activeSheet.frozenColumnCount(); var rcount = activeSheet.frozenRowCount(); alert(ccount); alert(rcount);
sheet.setRowCount(10); sheet.setColumnCount(8); sheet.frozenColumnCount(1);