DOCWRTMOBIOPTIONS (original) (raw)
Summary
The DOCWRTMOBIOPTIONS structure provides information about a Mobi Pocket eBook format (MOB).
Syntax
typedef struct _DOCWRTMOBIOPTIONS
{
[DOCWRTOPTIONS](docwrtoptions.html) Options;
[L_VOID](leadtools-basic-data-types.html) * pReserved;
} DOCWRTMOBIOPTIONS, *pDOCWRTMOBIOPTIONS;
Members
Options
Options structure containing options for MOB format.
pReserved
Reserved for future use. Pass 0.
Comments
pDOCWRTMOBIOPTIONS is a pointer to DOCWRTMOBIOPTIONS structure. Generally, where a function parameter type is pDOCWRTMOBIOPTIONS, you can declare a DOCWRTMOBIOPTIONS variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pDOCWRTMOBIOPTIONS variable is necessary only if your program requires a pointer.
MOBI is an e-Book file format for e-book readers such as the Kindle and mobile phones. The MOBI format is based on the PalmDOC format, extended by adding certain HTML-like tags to the data. It can load multipage files. For more information, refer to https://wiki.mobileread.com/wiki/MOBI.
The MOBI format supports the MobiPocket Reader.
The LEADTOOLS Document Writers support creating MOBI documents. The following features are supported:
- Unlimited number of pages
- Fully searchable documents
The uStructSize
at Options
structure should be set to the size of DOCWRTMOBIOPTIONS, Use the sizeof() operator to calculate this value.
The structure is used by:
LEADTOOLS Raster Imaging C API Help