Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フォント スタイルを ItalicUnderline または BoldItalicUnderline に設定する方法はありますか?
ありがとう
XFontStyle はenum型です。ビットごとのロジックを使用して、値を組み合わせることができます。
enum
const XFontStyle ItalicUnderline = XFontStyle.Italic | XFontStyle.Underline ; const XFontStyle BoldItalicUnderline = XFontStyle.Bold | XFontStyle.Italic | XFontStyle.Underline ;