Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 956 Bytes

GdipIsStyleAvailable.md

File metadata and controls

53 lines (36 loc) · 956 Bytes

Home

Function name : GdipIsStyleAvailable

Group: GDI+ Font - Library: gdiplus


Determines whether the specified style is available for this font family.


Code examples:

Custom GDI+ class

Declaration:

GpStatus WINGDIPAPI GdipIsStyleAvailable(
	GDIPCONST GpFontFamily *family,
	INT style,
	BOOL * IsStyleAvailable
)
  

FoxPro declaration:

DECLARE INTEGER GdipIsStyleAvailable IN gdiplus;
	INTEGER   fontfamily,;
	INTEGER   fontstyle,;
	INTEGER @ IsStyleAvailable
  

Parameters:

fontfamily [in] Handle to Font Family Object.

fontstyle [in] Integer that specifies the style of the typeface.

IsStyleAvailable [out] Set to True if requested style is available.


Return value:

Returns 0 if the call to the GdipIsStyleAvailable is successful.