Spread.Sheets
getActiveRowIndex メソッド
このシートのアクティブ行のインデックスを取得します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Worksheet(name);
var value; // Type: number
value = instance.getActiveRowIndex();
Javascript (Specification) 
function getActiveRowIndex() : number;

戻り値の型

アクティブセルの行インデックス。
使用例
次のサンプルコードは、アクティブ行を取得します。
sheet.setActiveCell(5,5);
alert(sheet.getActiveColumnIndex());
alert(sheet.getActiveRowIndex());
spread.bind(GC.Spread.Sheets.Events.EnterCell, function (event, data) {
    alert(data.col);
    alert(data.row);
  });
spread.bind(GC.Spread.Sheets.Events.LeaveCell, function (event, data) {
    alert(data.col);
    alert(data.row);
  });

関連トピック

参照

Worksheet タイプ

 

 


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