Available in LEADTOOLS Imaging Pro, Vector, Document, and Medical Imaging toolkits. |
DOCWRTDOCXOPTIONS
typedef struct _DOCWRTDOCXOPTIONS
{
DOCWRTOPTIONS Options;
L_BOOL bFramed;
L_UINT32 uFlags;
} DOCWRTDOCXOPTIONS, *pDOCWRTDOCXOPTIONS;
The DOCWRTDOCXOPTIONS structure provides information about MS-Word 2007 document files.
Member |
Description |
|
Options |
Options structure that contains options for a Word 2007 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 DOCX files. Currently there are no flags. This is for future use. |
Comments
pDOCWRTDOCXOPTIONS is a pointer to DOCWRTDOCXOPTIONS structure. Generally, where a function parameter type is pDOCWRTDOCXOPTIONS, you can declare a DOCWRTDOCXOPTIONS variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pDOCWRTDOCXOPTIONS variable is necessary only if your program requires a pointer.
Note: This format requires .Net framework 3.5 and Microsoft Open XML Format SDK 2.0.
This structure is used with the L_DocWriterConvert and L_DocWriterInit functions.