셀에 적용할 커스텀 css class명을 설정합니다.
주의: Class로 적용한 css는 엑셀 다운로드시 디자인 반영되지 않습니다.
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 | 기능 추가 |