Click or drag to resize

Window.Update Method (Typed)

X#
Update the client area of the specified window.

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

Return Value

Type: 
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