Have any way set font style ItalicUnderline or BoldItalicUnderline?
Thanks
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 ;
[Flags]
is irrelevant. It only affects ToString()
. The essential part is a 1,2,4,8,16 numbering. –
Carlisle © 2022 - 2024 — McMap. All rights reserved.