GdipCreateStringFormat

 

 

Description

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

Syntax

GpStatus WINGDIPAPI GdipCreateStringFormat(

    INT formatAttributes,

    LANGID language,

    GpStringFormat **format

);

PowerBASIC Syntax

DECLARE FUNCTION GdipCreateStringFormat ( _

    BYVAL formatAttributes AS LONG, _

    BYVAL language AS WORD, _

    BYREF pFormat AS DWORD _

) AS LONG

Parameters

 

formatAttributes

[in] Value that specifies the format flags that control most of the characteristics of the StringFormat object. The flags are set by applying a bitwise OR to elements of the StringFormatFlags enumeration. The default value is 0 (no flags set).

language

[in] Sixteen-bit value that specifies the language to use. The default value is LANG_NEUTRAL, which is the user's default language.

format

[out] Pointer to a variable that receives a pointer to the new StringFormat object.

 

Valid HTML 4.01 Transitional