GcSpread.Sheets Namespace > Sheet type : setCellType Method |
var instance = new GcSpread.Sheets.Sheet(name); var returnValue; // Type: any returnValue = instance.setCellType(row, col, value, sheetArea);
var cellType = new GcSpread.Sheets.ButtonCellType(); cellType.buttonBackColor("#FFFF00"); cellType.text("this is a button"); activeSheet.setCellType(1,1,cellType); spread.bind(GcSpread.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 GcSpread.Sheets.ButtonCellType) { alert("Button Clicked"); } });