Spread.Sheets
frozenRowCount メソッド
固定する行数。
シートの固定行の数を取得または設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Worksheet(name);
var value; // Type: any
value = instance.frozenRowCount(rowCount);
Javascript (Specification) 
function frozenRowCount( 
   rowCount : 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);
解説
デフォルト値は0です。

関連トピック

参照

Worksheet タイプ

 

 


© 2016-2017, GrapeCity inc. All rights reserved.