DOCWRTDOCOPTIONS

typedef struct _DOCWRTDOCOPTIONS
{
    DOCWRTOPTIONS Options;
    L_BOOL bFramed;
    L_UINT32 uFlags;
} DOCWRTDOCOPTIONS, *pDOCWRTDOCOPTIONS;

The DOCWRTDOCOPTIONS structure provides information about MS-Word document files.

Member

Description

Options

Options structure that contains options for a Word file.

bFramed

Flag that indicates whether to use framed text.

 

Value

Meaning

 

TRUE

Use framed text.

 

FALSE

Do not use framed text

uFlags

Flag that indicates the extra options for writing DOC files. Currently there are no flags. This is for future use.

Comments

pDOCWRTDOCOPTIONS is a pointer to DOCWRTDOCOPTIONS structure. Generally, where a function parameter type is pDOCWRTDOCOPTIONS, you can declare a DOCWRTDOCOPTIONS variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pDOCWRTDOCOPTIONS variable is necessary only if your program requires a pointer.

This structure is used with the L_DocWriterConvert and L_DocWriterInit functions.