如何在 VB.NET 中使用多种字体样式组合?
如果我想设置我的字体
new Font=("Times New Roman", 12, Drawing.FontStyle.Bold)
,我可以使用斜体、常规或下划线代替粗体。
但我想同时使用粗体和斜体。
我该怎么做?
If I want to set my Font I can use
new Font=("Times New Roman", 12, Drawing.FontStyle.Bold)
Instead of Bold, I can use Italic, Regular or Underline.
But I want to make use of Bold and Italic at the same time.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FontStyle
枚举是标志枚举,因此您可以组合值(在 VB.NET 中使用Or
运算符,在 C# 中使用|
):The
FontStyle
enumeration is a flags enumeration, so you can combine values (using theOr
operator in VB.NET,|
in c#):