typedef struct _DOCWRTXPSOPTIONS
{
DOCWRTOPTIONS Options;
L_VOID * pReserved;
} DOCWRTXPSOPTIONS, *pDOCWRTXPSOPTIONS;
The DOCWRTXPSOPTIONS structure provides information about a Microsoft XML Paper Specification format (XPS).
Member |
Description |
Options |
Options structure containing options for XPS format. |
pReserved |
Reserved for future use. Pass 0. |
Comments
pDOCWRTXPSOPTIONS is a pointer to DOCWRTXPSOPTIONS structure. Generally, where a function parameter type is pDOCWRTXPSOPTIONS, you can declare a DOCWRTXPSOPTIONS variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pDOCWRTXPSOPTIONS variable is necessary only if your program requires a pointer.
The uStructSize at Options structure should be set to the size of DOCWRTXPSOPTIONS, Use the sizeof() macro to calculate this value.
Note: XPS format requires .NET framework 3.0
This structure is used with the L_DocWriterInit function.