| property Selection: string; |
| This property will override FirstPage and LastPage if not blank. Selection defines the valid pages in a print job and can contain separate page ranges, separated by commas or with ranges defined as First-Last. You also are allowed to select even, odd or reverse order page output by including one of the following. |
| "r" "reverse order" pages |
| Selection := '1-11'; {Print pages 1 through 11} |
| Selection := '5-8,25'; {Print pages 5 through 8 and page 25} |
| Selection := '1,3,6-'; {Print pages 1,3 and 6 to end of job} |
| Selection := '1,e,9-11'; {Print all even pages and page 1, 9 through 11} |
| Selection := 'o'; {Print all odd pages} |
| Selection = "1-11"; / Print pages 1 through 11 |
| Selection = "5-8,25"; / Print pages 5 through 8 and page 25 |
| Selection = "1,3,6-"; / Print pages 1,3 and 6 to end of job |
| Selection = "1,e,9-11"; / Print all even pages and page 1, 9 through 11 |
| Selection := "o"; / Print all odd pages
|
|