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. |
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 XLS file extension is used for Microsoft Excel 97-2003 documents, part of the Microsoft Office Suite of software.
XLS is the default format used with Office 97-2003. XLS is a Microsoft proprietary Binary Interchange File Format. Microsoft Excel 97-2003 uses XLS as the default file format when creating a new document.
The LEADTOOLS Document Writers support creating version XLS. The following features are supported:
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.
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET