跳转到内容

Rebol 编程/textinfo

来自维基教科书,开放世界中的开放书籍
TEXTINFO face line-info line 

为面设置对象中的行文本信息。

TEXTINFO 是一个原生值。

  • face -- 定义信息的的面。 (类型: 对象)
  • line-info -- 设置信息的所在对象。 (类型: 对象)
  • line -- 要获取信息的所在行。 (类型: 数字 任意字符串)

源代码

[编辑 | 编辑源代码]
textinfo: native[
    {Sets the line text information in an object for a face.} 
    face [object!] "The face for which the information is defined." 
    line-info [object!] "The object where the information will be set." 
    line [number! any-string!] "The line to get information for."
]
华夏公益教科书