dev_set_windowπ
Short descriptionπ
dev_set_window β Activate a graphics window.
Signatureπ
dev_set_window( window WindowHandle )
Descriptionπ
dev_set_window activates the graphics window with the passed
window handle.
This is equivalent to pressing the Active button in the tool bar
of the graphics window.
Attentionπ
Using the code export feature of HDevelop, the code that is generated
for this operator may have a different behavior than the related
HALCON operator.
For a detailed description of the code export of HDevelop graphics
operators into the different programming languages see in the
βHDevelop User's Guideβ the chapter Code Export
-> General Aspects of Code Generation
-> Graphics Windows.
Parametersπ
WindowHandle (input_control) window β (handle)
Window handle.
Exampleπ
(HDevelop)
dev_open_window (1, 1, 200, 200, 'black', WindowID1)
dev_open_window (1, 220, 200, 200, 'black', WindowID2)
read_image(Image,'monkey')
dev_set_window(WindowID1)
dev_display(Image)
dev_set_window(WindowID2)
dev_display(Image)
Resultπ
If the values of the specified parameters are correct,
dev_set_window returns 2 (H_MSG_TRUE). Otherwise, an
exception is raised and an error code returned.
Combinations with other operatorsπ
Moduleπ
Foundation