■ 엑셀에서 범위 폰트 색상을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using System.Drawing; using Excel = Microsoft.Office.Interop.Excel; ... Excel.Range range; ... range.Font.Color = ColorTranslator.ToOle(Color.Blue); // 또는 range.Font.ColorIndex = 15; |
※ Microsoft.Office.Interop.Excel.dll 파일을 참조한다.