대상 셀에 폰트 색상을 설정 합니다.
ObjId.SetCellFontColor(Row, Col, Color);
Parameter | Type | Required | Description |
---|---|---|---|
Row | Long |
필수 | 해당 셀의 Row Index |
Col | Long or String |
필수 | 해당 셀의 Column Index 또는 SaveName |
Color | String |
필수 | 색상 값 |
none
// (2, 3) 셀의 폰트 색상을 'red'로 설정
mySheet.SetCellFontColor(2, 3, 'red');
mySheet.SetCellFontColor(2, 3, '#ff0000');
version | desc |
---|---|
7.0.0.0 |