Question

Have any way set font style ItalicUnderline or BoldItalicUnderline? enter image description here

Thanks

Was it helpful?

Solution

XFontStyle is an enum type. You can use bitwise logic to combine values.

const XFontStyle ItalicUnderline = XFontStyle.Italic | XFontStyle.Underline ;

const XFontStyle BoldItalicUnderline = XFontStyle.Bold | XFontStyle.Italic | XFontStyle.Underline ;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top