SelectObject.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

SelectObject (GDI32.@)

SYNOPSIS

HGDIOBJ SelectObject
 (
  HDC     hdc,
  HGDIOBJ hObj
 )

DESCRIPTION

Select a Gdi object into a device context.

PARAMS

hdc [In] Device context to associate the object with.

hObj [In] Gdi object to associate with hdc.

RETURNS

Success: A non-NULL handle representing the previously selected object of the same type as hObj.

Failure: A NULL object. If hdc is invalid, GetLastError(3w) returns ERROR_INVALID_HANDLE. if hObj is not a valid object handle, no last error is set. In either case, hdc is unaffected by the call.

IMPLEMENTATION

Defined in "gdi_private.h".

Implemented in "dlls/gdi32/gdiobj.c".

Debug channel "gdi".