Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.05 KB

File metadata and controls

51 lines (36 loc) · 1.05 KB

Home

Function name : GdipCreateStringFormat

Group: GDI+ StringFormat - Library: gdiplus


Creates a StringFormat object based on string format flags and a language.


Code examples:

Custom GDI+ class

Declaration:

GpStatus WINGDIPAPI GdipCreateStringFormat(
	INT formatAttributes,
	LANGID language,
	GpStringFormat **format
)  

FoxPro declaration:

DECLARE INTEGER GdipCreateStringFormat IN gdiplus;
	INTEGER formatAttributes,;
	INTEGER language,;
	INTEGER @fmt  

Parameters:

formatFlags [in] Optional. Value that specifies the format flags that control most of the characteristics of the StringFormat object.

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

format [out] Handle to the GDI+ StringFormat object


Return value:

Returns 0 on success.