PAGESETPAGESET*
*Contents  *Index  *Topic Contents
*Previous Topic: PAGERANGE
*Next Topic: Enumerations

PAGESET

typedef struct tagPAGESET
{
    ULONG cbStruct;
    BOOL fOddPages;
    BOOL fEvenPages;
    ULONG cPageRange;
    [size_is(cPageRange)] PAGERANGE rgPages[]
}PAGESET;
 

Identifies one or more page ranges to be printed and, optionally, identifies only the even or odd pages as part of a page set.

cbStruct
Number of bytes in this instance of the PAGESET structure. Must be a multiple of 4.
fOddPages
If TRUE, only the odd-numbered pages in the page set indicated by the rgPages member are to be printed.
fEvenPages
If TRUE, only the even-numbered pages in the page set indicated by the rgPages member are to be printed.
cPageRange
Number of page-range pairs specified in rgPages.
rgPages
Address of an array of PAGERANGE structures specifying the pages to be printed. One or more page ranges can be specified, as long as the number of page ranges is the value of the cPageRange member. The page ranges must be sorted in ascending order and must be nonoverlapping.

Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.