Rebol Programming/textinfo

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

TEXTINFO face line-info line 

DESCRIPTION:[edit | edit source]

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

TEXTINFO is a native value.

ARGUMENTS[edit | edit source]

  • 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 | edit source]

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