StringFormat flags : 显示整行
StringFormat 标志允许在矩形中以不同的方式表示字符串。
在此示例中使用了 string_format.FormatFlags = StringFormatFlags.NoClip
一:
问题
是
txt = "The quick brown fox jumps over the lazy dog."
我可以将此文本完全表示为单行(非剪辑且居中)。
我的意思是,我使用默认矩形,但不知道文本的长度是多少,但我知道文本中心应该在哪里。
the StringFormat flags permits to differently represent a string in a rectangle.
in this example was used string_format.FormatFlags = StringFormatFlags.NoClip
one:
Question
having
txt = "The quick brown fox jumps over the lazy dog."
can I represent this text entirely as a single line (non-clipped and centered).
I mean, I use a default rectangle without knowing what will be the length of the text, but i know where should be the text center.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解你的问题,我认为
StringFormat.Trimming
属性是实现这种情况的魔力:I think the
StringFormat.Trimming
property is the magic to make this occur, if I understood your question: