Spread.Sheets
アクティブセルのインデックスの取得

アクティブセルのインデックスを取得できます。

コードの使用

次のサンプルコードは、アクティブセルの列および行インデックスを取得します。

JavaScript
コードのコピー
$("#button1").click(function () {
    var sheet = spread.getActiveSheet();
     alert("Row index of an active cell : " + sheet.getActiveRowIndex() + "\n" +
         "Column index of an active cell: " + sheet.getActiveColumnIndex());
 });

 

 


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