次の方法で共有


StockObjectHandles::GetStockObject_I (Windows Embedded CE 6.0)

1/6/2010

This method retrieves a handle to one of the predefined stock pens, brushes or fonts.

Syntax

static HGDIOBJ GetStockObject_I(
  int IdxObject
);

Parameters

  • IdxObject
    [in] Integer that specifies the type of stock object. The following table shows the possible values.

    Value Description

    BLACK_BRUSH

    Black brush.

    DKGRAY_BRUSH

    Dark gray brush.

    GRAY_BRUSH

    Gray brush.

    HOLLOW_BRUSH

    Hollow brush (equivalent to NULL_BRUSH).

    LTGRAY_BRUSH

    Light gray brush.

    NULL_BRUSH

    Null brush (equivalent to HOLLOW_BRUSH).

    WHITE_BRUSH

    White brush.

    BLACK_PEN

    Black pen.

    WHITE_PEN

    White pen.

    SYSTEM_FONT

    System font. By default, the system uses the system font to draw menus, dialog box controls, and text.

    DEFAULT_PALETTE

    Default palette. This palette consists of the static colors in the system palette.

Return Value

If the function succeeds, the return value identifies the logical object requested. NULL indicates failure. To get extended error information, call GetLastError.

Remarks

This method is an internal version of the GetStockObject function.

Use the DKGRAY_BRUSH, GRAY_BRUSH, and LTGRAY_BRUSH stock objects only in windows with the CS_HREDRAW and CS_VREDRAW styles. Using a gray stock brush in any other style of window can lead to misalignment of brush patterns after a window is moved or sized. The origins of stock brushes cannot be adjusted.

The HOLLOW_BRUSH and NULL_BRUSH stock objects are equivalent.

You do not have to delete stock objects by calling Gdi::DeleteObject_I, butcalling this method causes no harm.

Requirements

Header gwebypasscoredllthunk.hpp
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

StockObjectHandles
GetStockObject
Gdi::DeleteObject_I
Gdi::SelectObject_I