Win_EndPaint

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > Windows API >

Win_EndPaint

 

Description

 

Marks the end of painting in the specified window. This function is required for each call to the WIN_BeginPaint function, but only after painting is complete.

 

Syntax

 

n = Win_EndPaint(hWnd, lpPaint)

 

Returns

 

Number.

 

Parameters

 

Name

Type

Optional

Meaning

hWnd

Number

No

Handle to the window to be repainted.

lpPaint

UDT

No

A PAINTSTRUCT structure that contains the painting information retrieved by WIN_BeginPaint.

 

Remarks

 

For additional info, please refer to MS documentation at: http://msdn.microsoft.com/en-us/library/dd162598(VS.85).aspx

 

Restrictions

 

See also

 

Examples