get_icon
— Query the icon for region output
get_icon( : Icon : WindowHandle : )
get_icon
queries the icon that was set with
set_icon
.
Icon
(output_object) region →
object
Icon for the regions center of gravity.
WindowHandle
(input_control) window →
(handle)
Window handle.
/* draw a region and an icon. */ /* set it and get it again. */ T_draw_region(&Region,WindowHandle); T_draw_region(&Icon,WindowHandle); set_icon(Icon); create_tuple_s(&icon,"icon"); T_set_shape(WindowHandle,icon); destroy_tuple(icon); T_disp_region(Region,WindowHandle); get_icon(&OldIcon); T_disp_region(OldIcon,WindowHandle);
get_icon
always returns 2 (
H_MSG_TRUE)
.
Foundation