Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 986 Bytes

GdipGetFamilyName.md

File metadata and controls

53 lines (36 loc) · 986 Bytes

Home

Function name : GdipGetFamilyName

Group: GDI+ Font - Library: gdiplus


Gets the name of this font family.


Code examples:

Custom GDI+ class

Declaration:

GpStatus WINGDIPAPI GdipGetFamilyName(
	GDIPCONST GpFontFamily *family,
	WCHAR name[LF_FACESIZE],
	LANGID language
)
  

FoxPro declaration:

DECLARE INTEGER GdipGetFamilyName IN gdiplus;
	INTEGER  fontfamily,;
	STRING @ familyname,;
	INTEGER  language
  

Parameters:

fontfamily [in] Handle to Font Family Object.

familyname [out] Name of this font family.

language [in] Optional. Sixteen-bit value that specifies the language to use.


Return value:

If the method succeeds, it returns Ok, which is an element of the Status enumeration.