You can display a button in a cell using the button cell. You can also set appearance properties such as color and text.

This example creates a button cell and sets the cell backcolor.
| JavaScript |
Copy Code
|
|---|---|
var cellType = new GC.Spread.Sheets.CellTypes.Button(); cellType.buttonBackColor("#FFFF00"); cellType.text("this is a button"); activeSheet.getCell(0, 2).cellType(cellType); |
|