셀에 적용할 커스텀 css class명을 설정합니다.
string
| Value | Description |
|---|---|
string |
열에 적용할 css class 명 |
<style>
.RedBold{color:"#FF0000";font-weight:700}
</style>
//특정 셀에 "RedBold" 클래스를 적용
var ROW = sheet.getRowById("AR10");
ROW["CLSClass"] = "RedBold";
//변경내용 반영
sheet.refreshCell({row:ROW, col:"CLS"});
| product | version | desc |
|---|---|---|
| core | 8.0.0.0 | 기능 추가 |