Rebol 编程/dump-face
外观
< Rebol 编程
DUMP-FACE face
打印整个窗格的界面信息。(用于调试)
DUMP-FACE 是一个函数值。
- 界面 -- (类型:对象)
dump-face: func [
"Print face info for entire pane. (for debugging)"
face [object!]
/local depth style
][
depth: ""
print [depth "Style:" all [in face 'style face/style] "Offset:" face/offset "Size:" face/size
"Text:" if face/text [copy/part form face/text 20]
]
insert depth tab
if object? face/pane [dump-face face/pane]
if block? face/pane [foreach f face/pane [dump-face f]]
remove depth
]