대상 셀의 배경색을 확인 합니다.
ObjId.GetCellBackColor(Row, Col)
Parameter | Type | Required | Description |
---|---|---|---|
Row | Long |
필수 | 해당 셀의 Row Index |
Col | Long or String |
필수 | 해당 셀의 Column Index 또는 SaveName |
String, 대상 셀의 배경색
// (2, 3)셀의 배경색 확인
console.log("backColor:", mySheet.GetCellBackColor(2, 3));
// (2, 'sDeptName')셀의 배경색 확인
console.log("backColor:", mySheet.GetCellBackColor(2, 'sDeptName'));
version | desc |
---|---|
7.0.0.0 |