|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| gdi32.lib
| Header File
| wingdi.h
| Unicode
| No
| Platform Notes
| Windows 95: int == 16 bits
|
|
|
GetCurrentObject
The GetCurrentObject function returns the currently selected object of the specified type.
HGDIOBJ GetCurrentObject(
HDC hdc,
| // handle of device context
| UINT uObjectType
| // object-type identifier
| );
|
|
Parameters
hdc
Identifies the device context.
uObjectType
Specifies the object type to be queried. This parameter can be one of the
following values:
Value
| Meaning
| OBJ_PEN
| Returns the current selected pen.
| OBJ_BRUSH
| Returns the current selected brush.
| OBJ_PAL
| Returns the current selected palette.
| OBJ_FONT
| Returns the current selected font.
| OBJ_BITMAP
| Returns the current selected bitmap if hdc is a memory device context.
|
Return Values
If the function succeeds, the return value is the handle of the specified
object.
If the function fails, the return value is NULL.
Remarks
An application can use the GetCurrentObject and GetObject functions to retrieve descriptions of the graphic objects currently selected
into the given device context.
See Also
DeleteObject, GetObject, SelectObject
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 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
|