Spread.Sheets
Button メソッド
コマンドボタン型セルを表します。
シンタックス
Javascript (Usage) 
var value; // Type: any
value = GC.Spread.Sheets.CellTypes.Button();
Javascript (Specification) 
function Button() : any;
使用例
// 次のサンプルコードは、ボタン型セルを作成します。 var cellType = new GC.Spread.Sheets.CellTypes.Button(); cellType.buttonBackColor("#FFFF00"); cellType.text("this is a button"); activeSheet.setCellType(1,1,cellType); // イベントを連結します。 spread.bind(GC.Spread.Sheets.Events.ButtonClicked, function (e, args) { var sheet = args.sheet, row = args.row, col = args.col; var cellType = activeSheet.getCellType(row, col); if (cellType instanceof GC.Spread.Sheets.CellTypes.Button) { alert("Button Clicked"); } });

関連トピック

参照

CellTypes タイプ

 

 


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