Spread.Sheets
セルのオーバーフロー表示の有効化

セルテキストを、隣接するセルにオーバーフロー表示させることができます。

コードの使用

次のサンプルコードは、テキストのオーバーフロー表示を有効にします。

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

    // オーバーフロー表示を有効にします。
    activeSheet.options.allowCellOverflow = true;

    activeSheet.getCell(1, 3).value("Any characters pushed outside the cell width are displayed as overflows.");
});
参照

 

 


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