PageRangeSelection Enumeration
.NET Framework (current version)
Specifies whether all the pages or only a limited range will be processed by an operation, usually printing.
Assembly: PresentationFramework (in PresentationFramework.dll)
| Member name | Description | |
|---|---|---|
| AllPages | All pages. | |
| CurrentPage | The current page. | |
| SelectedPages | The selected pages. | |
| UserPages | A user-specified range of pages. |
This enumeration is primarily used as the value of the PageRangeSelection property of the PrintDialog.
The following example shows how to use the enumeration to set the PageRangeSelection property by using Extensible Application Markup Language (XAML) and code.
<Button Width="200" Click="InvokePrint">Invoke PrintDialog</Button>
...
Private Sub InvokePrint(ByVal sender As Object, ByVal e As RoutedEventArgs) ' Create the print dialog object and set options Dim pDialog As New PrintDialog() pDialog.PageRangeSelection = PageRangeSelection.AllPages pDialog.UserPageRangeEnabled = True ' Display the dialog. This returns true if the user presses the Print button. Dim print? As Boolean = pDialog.ShowDialog() If print = True Then Dim xpsDocument As New XpsDocument("C:\FixedDocumentSequence.xps", FileAccess.ReadWrite) Dim fixedDocSeq As FixedDocumentSequence = xpsDocument.GetFixedDocumentSequence() pDialog.PrintDocument(fixedDocSeq.DocumentPaginator, "Test print job") End If End Sub
.NET Framework
Available since 3.0
Available since 3.0
Show: