ID3DXFont::GetDesc method

Gets a description of the current font object. GetDescW and GetDescA are identical to this method, except that a pointer is returned to a D3DXFONT_DESCW or D3DXFONT_DESCA structure, respectively.

Syntax

HRESULT GetDesc(
  [out] D3DXFONT_DESC *pDesc
);

Parameters

pDesc [out]

Type: D3DXFONT_DESC*

Pointer to a D3DXFONT_DESC structure that describes the font object.

Return value

Type: HRESULT

If the method succeeds, the return value is S_OK. If the method fails, the following value will be returned: D3DERR_INVALIDCALL.

Remarks

This method describes Unicode font objects if UNICODE is defined. Otherwise GetDescA is called, which returns a pointer to the D3DXFONT_DESCA structure.

Requirements

Requirement Value
Header
D3dx9core.h
Library
D3dx9.lib

See also

ID3DXFont