如何使用Rebol中的多行创建图形横幅(只能创建一行)?
这工作:如何使用Rebol中的多行创建图形横幅(只能创建一行)?
view layout [ box white 728x90 effect reduce [ 'gradient 0x1 sky]
font [align: 'center size: 40 color: red] "Your banner text"
]
但我怎么添加其他行?
谢谢。
回答:
在文字换行:
view layout [ box white 728x90 effect reduce [ 'gradient 0x1 sky]
font [align: 'center size: 40 color: red] "Your banner text^/on two lines"
]
如果您不习惯在雷博尔为“逃逸”字,这是很类似于C或Java或JavaScript或这样做.... 。
本页面Rebol的核心手册中有所有的细节 - http://www.rebol.com/docs/core23/rebolcore-16.html#section-2.11
回答:
你应该能够制定出如何获得多行不同的字体大小和颜色通过阅读本 - http://www.rebol.com/how-to/subpanels.html
以上是 如何使用Rebol中的多行创建图形横幅(只能创建一行)? 的全部内容, 来源链接: utcz.com/qa/263018.html