Rebol Draw:如何将文本置于框中居中?
我想将“您的横幅文本”居中,但不知道如何计算文本宽度
view layout [
box white 728x90 effect [
draw [
text 100x20 "Your Banner Text"
]
]
]
I want to center "Your Banner Text" but don't know how to calculate the text width
view layout [
box white 728x90 effect [
draw [
text 100x20 "Your Banner Text"
]
]
]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种将文本直接放入框中而不是使用 DRAW 方言的方法:
Here's a way of doing it by putting text straight into the box instead of using the DRAW dialect: