Click or drag to resize

Window.Update Method

X#
Update the client area of the specified window.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Update() AS USUAL
Request Example View Source

Return Value

Type: Usual
NIL
Remarks
This method utilizes the Windows API UpdateWindow() function which updates the client area of the specified window by sending a WM_PAINT message to the window. The message is sent directly to the window procedure of the specified window, thus bypassing the application queue. The Window:Update() method is automatically called upon when terminating the Expose().
Tip Tip
This method should not be used within an Expose() event handler.
See Also