FontStyle Enumerated Type
--------------------------------------------------------------------------------
The FontStyle enumeration specifies the style of the typeface of a font. Styles can be combined.
Syntax
typedef enum {
FontStyleRegular = 0,
FontStyleBold = 1,
FontStyleItalic = 2,
FontStyleBoldItalic = 3,
FontStyleUnderline = 4,
FontStyleStrikeout = 8
} FontStyle;
Constants
FontStyleRegular
Specifies normal weight or thickness of the typeface.
FontStyleBold
Specifies bold typeface. Bold is a heavier weight or thickness.
FontStyleItalic
Specifies italic typeface, which produces a noticeable slant to the vertical stems of the characters.
FontStyleBoldItalic
Specifies the typeface as both bold and italic.
FontStyleUnderline
Specifies underline, which displays a line underneath the baseline of the characters.
FontStyleStrikeout
Specifies strikeout, which displays a horizontal line drawn through the middle of the characters.
--------------------------------------------------------------------------------
The FontStyle enumeration specifies the style of the typeface of a font. Styles can be combined.
Syntax
typedef enum {
FontStyleRegular = 0,
FontStyleBold = 1,
FontStyleItalic = 2,
FontStyleBoldItalic = 3,
FontStyleUnderline = 4,
FontStyleStrikeout = 8
} FontStyle;
Constants
FontStyleRegular
Specifies normal weight or thickness of the typeface.
FontStyleBold
Specifies bold typeface. Bold is a heavier weight or thickness.
FontStyleItalic
Specifies italic typeface, which produces a noticeable slant to the vertical stems of the characters.
FontStyleBoldItalic
Specifies the typeface as both bold and italic.
FontStyleUnderline
Specifies underline, which displays a line underneath the baseline of the characters.
FontStyleStrikeout
Specifies strikeout, which displays a horizontal line drawn through the middle of the characters.
'Windows > MFC' 카테고리의 다른 글
GDI+ MSDN Link (0) | 2013.10.02 |
---|---|
GDI+ (Font Class Unit) (0) | 2013.10.02 |
윈도우 기본 폰트 가져오기 GetStockObject(DEFAULT_GUI_FONT) (0) | 2013.10.02 |
GDI+ 용 Double Buffering (더블 버퍼링) (0) | 2013.10.02 |
Double buffering (더블 버퍼링) (0) | 2013.10.02 |