Rebol Programming/offset-to-caret

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

USAGE:[edit | edit source]

OFFSET-TO-CARET face offset 

DESCRIPTION:[edit | edit source]

Returns the offset in the face's text corresponding to the offset pair.

OFFSET-TO-CARET is a native value.

ARGUMENTS:[edit | edit source]

  • face -- The face containing the text. (Type: object)
  • offset -- The XY offset relative to the face. (Type: pair)

SOURCE CODE[edit | edit source]

offset-to-caret: native[
    {Returns the offset in the face's text corresponding to the offset pair.} 
    face [object!] "The face containing the text." 
    offset [pair!] "The XY offset relative to the face."
]