[]
        
(Showing Draft Content)

버튼 셀

셀에 버튼을 표시하려면 버튼 셀을 사용할 수 있습니다. 또한 색상, 텍스트와 같은 표시 속성도 설정할 수 있습니다.


코드 사용 예

이 예제는 버튼 셀을 생성하고 셀의 배경색을 설정합니다.

var cellType = new GC.Spread.Sheets.CellTypes.Button();
cellType.buttonBackColor("#FFFF00");
cellType.text("this is a button");
activeSheet.getCell(0, 2).cellType(cellType);