typedef struct _tagTextCommonSettings
{
L_UINT32 uStructSize;
L_BOOL bAppend;
L_CHAR * pszAppendFrom;
DOC2_HEADERFOOTERSETTING HFSetng;
} TEXTCOMMONSETTINGS, * pTEXTCOMMONSETTINGS;
The TEXTCOMMONSETTINGS structure provides information about common settings for the following DOC2_FORMATTYPE output formats:
Structure size. Set it to size of(TEXTCOMMONSETTINGS).
Enables or disables whether text will be appended. Possible values are:
Value | Meaning |
---|---|
TRUE | Append text. |
FALSE | Do not append text. |
Character string that contains append the output to this file
The toolkit allocates memory internally for this member using the Windows GlobalAllocPtr macro. When the structure is no longer needed, be sure to use the Windows GlobalFreePtr macro to free the memory allocated by the toolkit if it contains a valid pointer (not NULL).
Specifies the header and footer settings for the document. For a list of possible values, refer to DOC2_HEADERFOOTERSETTING.
pTEXTCOMMONSETTINGS is a pointer to a TEXTCOMMONSETTINGS structure. If the function parameter type is pTEXTCOMMONSETTINGS, declare a TEXTCOMMONSETTINGS variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pTEXTCOMMONSETTINGS variable is necessary only if the program requires a pointer.
The structure is used by: