| Methods |
| --------- --------- --------- --------- --------- --------- --------- --------- --------- |
| Properties |
| Font.Bold = True/False |
글씨 굵게 |
| ActiveCell.Font.Bold = True |
| Color |
글꼴의 색상을 RGB(0,255,0) 또는 vbRed 으로 설정. xlColorIndexAutomatic : 자동색상(검정) |
| ActiveCell.Font.Color = vbRed |
| Interior |
셀 색상 또는 그리기 개체 채우기 색상. xlColorIndexNone : 채우기 없음 |
| ActiveCell.Interior.Color = vbRed |
| ColorIndex |
글꼴의 색상을 설정된 번호로 설정 |
| ActiveCell.Font.ColorIndex = 3 |
| FontStyle |
글꼴 스타일을 허용되는 Regular, Italic, Bold, Bold Italic 로 설정 |
| ActiveCell.Font.FontStyle = "Bold Italic" |
| Italic = True/False |
글꼴 스타일이 기울임꼴이면 True |
| ActiveCell.Font.Italic = True |
| Name |
글꼴 글씨체를 설정 |
| ActiveCell.Font.Name = "궁서체" |
| Size |
글꼴의 크기를 설정 |
| ActiveCell.Font.Size = 9 |
| Strikethrough = True / False |
글꼴이 수평선으로 칠해진 경우 True |
| ActiveCell.Font.Strikethrough = True |
| Subscript = True / False |
글꼴이 아래 첨자로 서식이 지정되면 True. 기본 False |
| ActiveCell.Font.Subscript = True |
| Superscript |
글꼴이 위 첨자로 서식이 지정되면 True. 기본 False |
| ActiveCell.Font.Superscript = True |
| Underline <상세 |
글꼴에 밑줄을 설정 |
| ActiveCell.Font.Underline = True |
출처: Microsoft/Docs/Office VBA Reference/Excel