IFont::get_Weight method (ocidl.h)

Gets the font's current Weight property.

Syntax

HRESULT get_Weight(
  [out] SHORT *pWeight
);

Parameters

[out] pWeight

A pointer to the caller-allocated variable that receives the current Weight property for the font. For a list of possible values, see the lfWeight member of the LOGFONT structure.

Return value

This method can return one of these values.

Return code Description
The weight was retrieved successfully. If the weight is indeterminate, a font object should store FW_NORMAL in *pWeight and return S_OK.
The address in the pWeight parameter is not valid. For example, it may be NULL.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header ocidl.h

See also

IFont

IFont::put_Weight