INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- The 'CreateCompatibleDC' function creates a memory device context (DC)
-- compatible with the specified device.
-- The 'DeleteDC' function deletes the specified device context (DC).
-- The 'DeleteObject' function deletes a logical pen, brush, font,
-- bitmap, region, or palette, freeing all system resources associated
-- with the object. After the object is deleted, the specified handle
-- is no longer valid.
-- The 'GetDC' function retrieves a handle of a display device
-- context (DC) for the client area of the specified window.
-- The display device context can be used in subsequent GDI functions
-- to draw in the client area of the window.
--
-- This function retrieves a common, class, or private device context
-- depending on the class style specified for the specified window.
-- For common device contexts, 'GetDC' assigns default attributes
-- to the device context each time it is retrieved. For class and
-- private device contexts, 'GetDC' leaves the previously assigned
-- attributes unchanged.
-- The `GetDCEx' function retrieves the handle of a display
-- device (DC) context for the specified window. The display device
-- context can be used in subsequent GDI functions to draw in the
-- client area.
-- This function is an extension to the `GetDC' function
-- that gives an application more control over how and whether
-- clipping occurs in the client area.
-- The 'GetDeviceCaps' function retrieves device-specific information
-- about a specified device.
-- The 'GetObject' function obtains information about a specified
-- graphics object. Depending on the graphics object, the function places
-- a filled-in WAPI_BITMAP, DIBSECTION, EXTLOGPEN, WAPI_LOGBRUSH, WAPI_LOGFONT,
-- or WAPI_LOGPEN structure, or a count of table entries (for a logical
-- palette), into a specified buffer.
-- The 'GetStockObject' function retrieves a handle to one of the
-- predefined stock pens, brushes, fonts, or palettes.
-- The 'ReleaseDC' function releases a device context (DC), freeing it
-- for use by other applications. The effect of the 'ReleaseDC' function
-- depends on the type of device context. It frees only common and window
-- device contexts. It has no effect on class or private device contexts.
-- The 'SelectObject' function selects an object into the specified
-- device context. The new object replaces the previous object of the
-- same type.
-- The CreateDC function creates a device context (DC) for a device by
-- using the specified name.
-- The CreateDC function creates a device context (DC) for a device by
-- using the specified name.
-- The SaveDC function saves the current state of the specified device
-- context (DC) by copying data describing selected objects and graphic
-- modes (such as the bitmap, brush, palette, font, pen, region, drawing
-- mode, and mapping mode) to a context stack.
-- BOOL
-- The RestoreDC function restores a device context (DC) to the specified
-- state. The device context is restored by popping state information off
-- a stack created by earlier calls to the SaveDC function.
-- HDC
-- HMETAFILE
-- BOOL
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |