英語で読む

次の方法で共有


PageRangeSelection 列挙型

定義

ある操作 (通常は印刷) で、すべてのページを処理するか、限定した範囲だけを処理するかを指定します。

public enum PageRangeSelection
継承
PageRangeSelection

フィールド

AllPages 0

すべてのページ。

CurrentPage 2

現在のページ。

SelectedPages 3

選択されたページ。

UserPages 1

ユーザーが指定したページの範囲。

次の例では、 列挙を使用して、Extensible Application Markup Language (XAML) とコードを使用して プロパティを設定 PageRangeSelection する方法を示します。

<Button Width="200" Click="InvokePrint">Invoke PrintDialog</Button>

...

private void InvokePrint(object sender, RoutedEventArgs e)
    {
        // Create the print dialog object and set options
        PrintDialog pDialog = new PrintDialog();
        pDialog.PageRangeSelection = PageRangeSelection.AllPages;
        pDialog.UserPageRangeEnabled = true;

        // Display the dialog. This returns true if the user presses the Print button.
        Nullable<Boolean> print = pDialog.ShowDialog();
        if (print == true)
        {
            XpsDocument xpsDocument = new XpsDocument("C:\\FixedDocumentSequence.xps", FileAccess.ReadWrite);
            FixedDocumentSequence fixedDocSeq = xpsDocument.GetFixedDocumentSequence();
            pDialog.PrintDocument(fixedDocSeq.DocumentPaginator, "Test print job");
        }
    }

注釈

この列挙体は、主に PrintDialogPageRangeSelection プロパティの値として使用されます。

適用対象

製品 バージョン
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9