FILEXPSOPTIONS

typedef struct _FILEXPSOPTIONS
{
    L_UINT uStructSize;
    L_INT nXResolution;
    L_INT nYResolution;
}
FILEXPSOPTIONS, *pFILEXPSOPTIONS;

The FILEXPSOPTIONS structure provides information on loading XPS files.

Member

Description

uStructSize

Size of the structure. This must be set before passing this structure to the LEAD functions. Use the sizeof() macro to calculate this value.

nXResolution

Horizontal display resolution in dots per inch, default is 96.

nYResolution

Vertical display resolution in dots per inch, default is 96.

Comments

pFILEXPSOPTIONS is a pointer to a FILEXPSOPTIONS structure. Use LFileSettings::SetXPSOptions and LFileSettings::GetXPSOptions to set and get the XPS file options.

The following methods make use of this structure:

LFileSettings::GetXPSOptions

LFileSettings::SetXPSOptions