Reputation: 5483
Have any way set font style ItalicUnderline or BoldItalicUnderline?
Thanks
Upvotes: 10
Views: 9505
Reputation: 273264
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 ;
Upvotes: 17