Have any way set font style ItalicUnderline or BoldItalicUnderline?
Thanks
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 ;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With