Rebol Programming/textinfo

USAGE: edit

TEXTINFO face line-info line 

DESCRIPTION: edit

Sets the line text information in an object for a face.

TEXTINFO is a native value.

ARGUMENTS edit

  • face -- The face for which the information is defined. (Type: object)
  • line-info -- The object where the information will be set. (Type: object)
  • line -- The line to get information for. (Type: number any-string)

SOURCE CODE edit

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."
]