Spread.Sheets
表示セルのインデックスの取得

表示されているセルのインデックスを取得できます。

コードの使用

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

JavaScript
コードのコピー
$("#button1").click(function () {
    var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"),{sheetCount:3});
    var sheet = spread.getActiveSheet();

    //最上行および最左列のインデックスを取得します。
    var topRow = sheet.getViewportTopRow(1);
    var leftCol = sheet.getViewportLeftColumn(1);

    alert("Index of top row being displayed: " + topRow + "\n" +
        "Index of first column being displayed: " + leftCol);
});

 

 


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