|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| user32.lib
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
DrawIcon
The DrawIcon function draws an icon in the client area of the window of the specified
device context.
BOOL DrawIcon(
HDC hDC,
| // handle to device context
| int X,
| // x-coordinate of upper-left corner
| int Y,
| // y-coordinate of upper-left corner
| HICON hIcon
| // handle to icon to draw
| );
|
|
Parameters
hDC
Identifies the device context for a window.
X
Specifies the logical x-coordinate of the upper-left corner of the icon.
Y
Specifies the logical y-coordinate of the upper-left corner of the icon.
hIcon
Identifies the icon to be drawn.
Windows NT: The icon resource must have been previously loaded by using the LoadIcon function.
Windows 95: The icon resource must have been previously loaded by using the LoadIcon or LoadImage functions.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error
information, call GetLastError.
Remarks
DrawIcon places the icon's upper-left corner at the location specified by the X and Y parameters. The location is subject to the current mapping mode of the device
context.
See Also
CreateIcon, DrawIconEx, LoadIcon
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|