Rebol Programming/win-offset?

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

USAGE:

[edit | edit source]
WIN-OFFSET? face 

DESCRIPTION:

[edit | edit source]

Returns the offset of a face within its window.

WIN-OFFSET? is a function value.

ARGUMENTS

[edit | edit source]
  • face -- (Type: object)

SOURCE CODE

[edit | edit source]
win-offset?: func [
    "Returns the offset of a face within its window." 
    face [object!] 
    /local xy
][
    xy: 0x0 
    while [face/parent-face] [
        xy: xy + face/offset 
        face: face/parent-face 
        if face/edge [xy: xy + face/edge/size]
    ] 
    xy
]