DOCWRTLTDOPTIONS (original) (raw)
Summary
The DOCWRTLTDOPTIONS structure provides information about a LEAD Temporary Document file.
Syntax
typedef struct _DOCWRTLTDOPTIONS
{
[DOCWRTOPTIONS](docwrtoptions.html) Options;
[L_VOID](leadtools-basic-data-types.html) * pReserved;
} DOCWRTLTDOPTIONS, *pDOCWRTLTDOPTIONS;
Members
Options
Options structure containing options for LTD format.
pReserved
Reserved for future use. Pass 0.
Comments
pDOCWRTLTDOPTIONS is a pointer to DOCWRTLTDOPTIONS structure. Generally, where a function parameter type is pDOCWRTLTDOPTIONS, you can declare a DOCWRTLTDOPTIONS variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pDOCWRTLTDOPTIONS variable is necessary only if your program requires a pointer.
LEADTOOLS Temporary Document (LTD). This format creates a temporary file on disk that can later be converted to any of the other formats supported by the LEADTOOLS Document Writers. This format is intended to be used when creating a document with large amount of pages over multiple sessions (for example, in a server-based scenario).
The LEADTOOLS Document Writers support creating LTD documents. The following features are supported:
- Unlimited number of pages
- Fully searchable documents
- Document creation over multiple sessions where new pages are appended to an existing file on disk before the final result is converted to the final document format such as PDF, DOCX, HTML or any other format.
The uStructSize
at Options
structure should be set to the size of DOCWRTLTDOPTIONS, Use the sizeof() operator to calculate this value.
The structure is used by:
LEADTOOLS Raster Imaging C API Help