當前位置: 首頁>>代碼示例>>VB.NET>>正文


VB.NET AnnotationDocumentPaginator構造函數代碼示例

本文整理匯總了VB.NET中System.Windows.Annotations.AnnotationDocumentPaginator.AnnotationDocumentPaginator構造函數的典型用法代碼示例。如果您正苦於以下問題:VB.NET AnnotationDocumentPaginator構造函數的具體用法?VB.NET AnnotationDocumentPaginator怎麽用?VB.NET AnnotationDocumentPaginator使用的例子?那麽, 這裏精選的構造函數代碼示例或許可以為您提供幫助。您也可以進一步了解該構造函數所在System.Windows.Annotations.AnnotationDocumentPaginator的用法示例。


在下文中一共展示了AnnotationDocumentPaginator構造函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。

示例1: CBool

Dim prntDialog As New PrintDialog()
If CBool(prntDialog.ShowDialog()) Then
    ' XpsDocumentWriter.Write() may change the current
    ' directory to "My Documents" or another user selected
    ' directory for storing the print document.  Save the
    ' current directory and restore it after calling Write().
    Dim docDir As String = Directory.GetCurrentDirectory()

    ' Create and XpsDocumentWriter for the selected printer.
    Dim xdw As XpsDocumentWriter = PrintQueue.CreateXpsDocumentWriter(prntDialog.PrintQueue)

    ' Print the document with annotations.
    Try
        xdw.Write(_annotHelper.GetAnnotationDocumentPaginator(_xpsDocument.GetFixedDocumentSequence()))
    Catch e1 As PrintingCanceledException
        ' If in the PrintDialog the user chooses a file-based
        ' output, such as the "MS Office Document Image Writer",
        ' the user confirms or specifies the actual output
        ' filename when the xdw.write operation executes.
        ' If the user clicks "Cancel" in the filename
        ' dialog a PrintingCanceledException is thrown
        ' which we catch here and ignore.
    End Try

    ' Restore the original document directory to "current".
    Directory.SetCurrentDirectory(docDir)
End If
開發者ID:VB.NET開發者,項目名稱:System.Windows.Annotations,代碼行數:27,代碼來源:AnnotationDocumentPaginator

示例2: GetAnnotationDocumentPaginator

' ------------------ GetAnnotationDocumentPaginator ------------------
''' <summary>
'''   Returns a paginator for printing annotations.</summary>
''' <param name="fds">
'''   The FixedDocumentSequence containing
'''   the annotations to print.</param>
''' <returns>
'''   An paginator for printing the document's annotations.</returns>
Public Function GetAnnotationDocumentPaginator(ByVal fds As FixedDocumentSequence) As AnnotationDocumentPaginator
    Return New AnnotationDocumentPaginator(fds.DocumentPaginator, _annotService.Store)
End Function
開發者ID:VB.NET開發者,項目名稱:System.Windows.Annotations,代碼行數:11,代碼來源:AnnotationDocumentPaginator


注:本文中的System.Windows.Annotations.AnnotationDocumentPaginator.AnnotationDocumentPaginator構造函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。