如何在 Visual Basic 6 PictureBox 中制作非常小的字体大小?
我正在尝试在 PictureBox 中打印不同字体大小的单词。
我已经完成了 pb.FontSize = 5、pb.FontSize = 10 和 pb.FontSize = 15
,打印时一直达到 pb.FontSize = 30
一个单词(使用pb.Print "XYZ"
)。
然而,1 到 5 的字体大小看起来与 10 完全相同。20 及更大的字体大小显然会变得越来越大。
VB6 PictureBox 中是否有最小字体大小?我想要小于 10 的字体大小。
I am trying to print words of varying font sizes in a PictureBox.
I've done pb.FontSize = 5, pb.FontSize = 10, and pb.FontSize = 15
, all the way up to pb.FontSize = 30
when printing out a word (using pb.Print "XYZ"
).
However, the font size of 1 through 5 looks exactly like 10. Font sizes of 20 and greater clearly get bigger and bigger.
Is there a minimum font size in a VB6 PictureBox? I want font sizes that are smaller than 10.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否使用可缩放至任意大小的 TrueType 字体?
固定大小字体仅支持有限的字体集。 Vb6 中的默认字体是固定大小的(Microsoft Sans Serif)。
Are you using a TrueType font, which can be scaled to any size?
Fixed-size fonts only support a limited set of fonts. The default font in Vb6 is fixed-size (Microsoft Sans Serif).
尝试使用“小字体”字体。
并非所有字体都可以正确缩放,并且可以正确缩放的字体在小尺寸下可能无法阅读。
Try using the "Small fonts" font.
Not all fonts can scale properly, and of those that can, may not be readable at small sizes.