SelectObject Function
Declaration
Private Declare Function SelectObject Lib "gdi32" Alias "SelectObject" (ByVal hdc As Long, ByVal hObject As Long) As Long
Description of Function
Used to select a drawing object into a DC.
Parameter Type / Description
hdc Long / Handle to DC.
hObject Long / Handle to object.
Return Value
Long / Handle to previously slected object on success, Zero on failure.
|