Searched refs:fontAttributes (Results 1 – 1 of 1) sorted by relevance
177 LOGFONT fontAttributes = { 0 }; in CreateBoldFont() local178 ::GetObject(font, sizeof(fontAttributes), &fontAttributes); in CreateBoldFont()179 fontAttributes.lfWeight = FW_BOLD; in CreateBoldFont()180 HFONT boldFont = ::CreateFontIndirect(&fontAttributes); in CreateBoldFont()186 LOGFONT fontAttributes = { 0 }; in CreateItalicFont() local187 ::GetObject(font, sizeof(fontAttributes), &fontAttributes); in CreateItalicFont()188 fontAttributes.lfItalic = TRUE; in CreateItalicFont()189 HFONT italicFont = ::CreateFontIndirect(&fontAttributes); in CreateItalicFont()195 LOGFONT fontAttributes = { 0 }; in CreateBoldItalicFont() local196 ::GetObject(font, sizeof(fontAttributes), &fontAttributes); in CreateBoldItalicFont()[all …]