跳至内容

Rebol 编程/screen-offset?

来自维基教科书,开放的书籍,为开放的世界
SCREEN-OFFSET? face 

返回任何面的绝对屏幕偏移。

SCREEN-OFFSET? 是一个函数值。

  • face -- (类型:对象)

源代码

[编辑 | 编辑源代码]
screen-offset?: func [
    "Returns the absolute screen offset for any face." 
    face [object!] 
    /local xy
][
    xy: face/offset 
    while [face: face/parent-face] [
        xy: xy + face/offset 
        if face/edge [xy: xy + face/edge/size]
    ] 
    xy
]
华夏公益教科书