如何在Rebol中创建多行的图形横幅(只能创建一行)?

时间:2009-12-14 00:24:43

标签: rebol

这有效:

view layout [
    box white 728x90 effect reduce [ 'gradient 0x1 sky] 
    font [align: 'center size: 40 color: red] "Your banner text"
]

但是如何添加其他线?

谢谢。

2 个答案:

答案 0 :(得分:0)

在文字中加入新行:

view layout [
    box white 728x90 effect reduce [ 'gradient 0x1 sky] 
    font [align: 'center size: 40 color: red] "Your banner text^/on two lines"
]

如果您不习惯在Rebol中“转义”字符,那么它与C或Java或JavaScript中的字符非常类似......

Rebol核心手册中的此页面包含所有详细信息 - http://www.rebol.com/docs/core23/rebolcore-16.html#section-2.11

答案 1 :(得分:0)

您应该能够通过阅读本文来了解如何获得具有不同字体大小和颜色的多行 - http://www.rebol.com/how-to/subpanels.html