DOCWRTRTFOPTIONS

typedef struct _DOCWRTRTFOPTIONS
{
    DOCWRTOPTIONS Options;
    L_BOOL bFramed;
    L_UINT32 uFlags;
} DOCWRTRTFOPTIONS, *pDOCWRTRTFOPTIONS;

The DOCWRTRTFOPTIONS structure provides information about RTF document files.

Member

Description

Options

Options structure that contains options for RTF format.

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 RTF files. Currently there are no flags. This is for future use.

Comments

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

This structure is used with the L_DocWriterConvert and L_DocWriterInit functions.