typedef struct _DOCWRTXLSOPTIONS
{
DOCWRTOPTIONS Options;
L_VOID * pReserved;
L_UINT32 uFlags;
} DOCWRTXLSOPTIONS, *pDOCWRTXLSOPTIONS;
The DOCWRTXLSOPTIONS structure provides information about the Microsoft Excel file format (XLS).
Member |
Description |
Options |
Structure that contains structure size information for the XLS format. |
pReserved |
Reserved for future use. Pass NULL. |
uFlags |
Flag that indicates extra options for writing XLS files. Currently there are no flags. Reserved for future use. |
Comments
pDOCWRTXLSOPTIONS is a pointer to a DOCWRTXLSOPTIONS structure. Generally, if a function parameter type is pDOCWRTXLSOPTIONS, you can declare a DOCWRTXLSOPTIONS variable and update the structure's fields. Then pass the variable's address in the parameter. Declaring a pDOCWRTXLSOPTIONS variable is necessary only if your program requires a pointer.
The uStructSize of the DOCWRTOPTIONS structure should be set to the size of DOCWRTXLSOPTIONS, Use the sizeof() macro to calculate this value.
This structure is used with the L_DocWriterInit function.