Javascript (Usage) | |
---|
var instance = new GC.Spread.Sheets.Worksheet(name);
var value; // Type: any
value = instance.frozenRowCount(rowCount); |
Javascript (Specification) | |
---|
function frozenRowCount(
: number
) : any; |
パラメータ
- rowCount
- 固定する行数。
戻り値の型
値が設定されていない場合は、固定行の数を返します。値が設定されている場合は、ワークシートを返します。
This example returns the frozen row and column counts.
var ccount = activeSheet.frozenColumnCount();
var rcount = activeSheet.frozenRowCount();
alert(ccount);
alert(rcount);
This example creates a frozen row.
sheet.setRowCount(10);
sheet.setColumnCount(8);
sheet.frozenRowCount(1);