typedef struct _tagWordPadSettings
{
L_UINT32 uStructSize;
L_BOOL bBullets;
L_BOOL bCharColors;
DOC2_HEADERFOOTERSETTING HFSetng;
L_BOOL bLineBreaks;
DOC2_FORMATLEVEL OutputMode;
L_BOOL bPageBreaks;
DOC2_DPISETTING DpiSetng;
DOC2_TABLESETTING TableSetng;
L_BOOL bTabs;
} WORDPADSETTINGS, * pWORDPADSETTINGS;
The WORDPADSETTINGS structure provides information about settings for the DOC2_WORDPAD
member of the DOC2_FORMATTYPE output format.
Structure size. Set it to sizeof(WORDPERFECT8SETTINGS).
Specifies whether bullets are in the document. Possible values are:
Value | Meaning |
---|---|
TRUE | Bullets are in the document. |
FALSE | Bullets are not in the document. |
Specifies whether the colors of the characters should be kept. Possible values are:
Value | Meaning |
---|---|
TRUE | Keep the font color of the characters. |
FALSE | Do not keep the font color of the characters. |
Specifies the header and footer settings for the document. For a list of possible values, refer to DOC2_HEADERFOOTERSETTING.
Specifies whether to insert line breaks.
Value | Meaning |
---|---|
TRUE | Insert line breaks. |
FALSE | Do not insert line breaks. |
Specifies the output mode. For list of possible values, refer to DOC2_FORMATLEVEL.
Specifies whether to use page breaks. Possible values are:
Value | Meaning |
---|---|
TRUE | Use page breaks. |
FALSE | Do not use page breaks. |
Specifies the DPI setting. For a list of possible values, refer to DOC2_DPISETTING.
Specifies the table settings. For a list of possible values, refer to DOC2_TABLESETTING.
Specifies whether to retain the original tab positions or to use the defaults.
Value | Meaning |
---|---|
TRUE | Retain the original tab positions. |
FALSE | Use the default tab positions. |
pWORDPADSETTINGS is a pointer to a WORDPADSETTINGS structure. If the function parameter type is pWORDPADSETTINGS, declare a WORDPADSETTINGS variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pWORDPADSETTINGS variable is necessary only if the program requires a pointer.
The structure is used by: