Rebol Draw:如何将文本放在盒子中心?

时间:2009-08-15 16:24:55

标签: rebol

我想将“你的横幅文字”居中,但不知道如何计算文字宽度

view layout [
    box white 728x90 effect [
        draw [ 
            text 100x20 "Your Banner Text"
        ]
    ]
]

1 个答案:

答案 0 :(得分:1)

这是通过将文字直接放入框中而不是使用DRAW方言来实现的:

view layout [
    box white 728x90 font [align: 'center] "Your banner text"
]