Spread.Sheets Documentation
Setting a Button Cell

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

Using Code

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);
See Also

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.