Result of getting the print range.

interface RangeModeResult {
    from: number;
    rangeMode: 0 | 1 | 2 | 3 | 4 | 5;
    to: number;
}

Properties

Properties

from: number

The starting page number.

rangeMode: 0 | 1 | 2 | 3 | 4 | 5

The range mode. The valid values are: DefineConst.FR_PRINT_RANGE_ALL, DefineConst.FR_PRINT_RANGE_CURRENT_VIEW, DefineConst.FR_PRINT_RANGE_CURRENT_PAGE, DefineConst.FR_PRINT_RANGE_PAGES, DefineConst.FR_PRINT_RANGE_PORTFOLIO_SELECTED, DefineConst.FR_PRINT_RANGE_PORTFOLIO_ALL

to: number

The ending page number.