AnnotationDocumentPaginator 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
문서를 연결된 주석과 함께 인쇄할 수 있도록 DocumentPaginator를 제공합니다.
public ref class AnnotationDocumentPaginator sealed : System::Windows::Documents::DocumentPaginator
public sealed class AnnotationDocumentPaginator : System.Windows.Documents.DocumentPaginator
type AnnotationDocumentPaginator = class
inherit DocumentPaginator
Public NotInheritable Class AnnotationDocumentPaginator
Inherits DocumentPaginator
- 상속
예제
다음 예제에서는 사용 된 AnnotationDocumentPaginator 클래스입니다.
PrintDialog prntDialog = new PrintDialog();
if ((bool)prntDialog.ShowDialog())
{
// 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().
string docDir = Directory.GetCurrentDirectory();
// Create and XpsDocumentWriter for the selected printer.
XpsDocumentWriter xdw = PrintQueue.CreateXpsDocumentWriter(
prntDialog.PrintQueue);
// Print the document with annotations.
try
{
xdw.Write(_annotHelper.GetAnnotationDocumentPaginator(
_xpsDocument.GetFixedDocumentSequence()));
}
catch (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.
// MessageBox.Show("Print output cancelled");
}
// Restore the original document directory to "current".
Directory.SetCurrentDirectory(docDir);
}
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
// ------------------ 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 AnnotationDocumentPaginator GetAnnotationDocumentPaginator(
FixedDocumentSequence fds)
{
return new AnnotationDocumentPaginator(
fds.DocumentPaginator, _annotService.Store);
}
' ------------------ 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
설명
AnnotationDocumentPaginator 클래스를 래핑하고 합니다 DocumentPaginator 에 지정 된는 AnnotationDocumentPaginator 인쇄할 페이지에 사용자 주석을 추가 하는 생성자입니다.
생성자
AnnotationDocumentPaginator(DocumentPaginator, AnnotationStore) |
지정된 AnnotationDocumentPaginator 및 DocumentPaginator를 기반으로 AnnotationStore 클래스의 새 인스턴스를 초기화합니다. |
AnnotationDocumentPaginator(DocumentPaginator, AnnotationStore, FlowDirection) |
지정된 AnnotationDocumentPaginator, DocumentPaginator 및 텍스트 AnnotationStore을 기반으로 FlowDirection 클래스의 새 인스턴스를 초기화합니다. |
AnnotationDocumentPaginator(DocumentPaginator, Stream) |
지정된 DocumentPaginator 및 주석 스토리지 Stream을 기반으로 AnnotationDocumentPaginator 클래스의 새 인스턴스를 초기화합니다. |
AnnotationDocumentPaginator(DocumentPaginator, Stream, FlowDirection) |
지정된 DocumentPaginator, 주석 스토리지 Stream 및 텍스트 FlowDirection를 기반으로 AnnotationDocumentPaginator 클래스의 새 인스턴스를 초기화합니다. |
속성
IsPageCountValid |
PageCount가 총 페이지 수인지 여부를 나타내는 값을 가져옵니다. |
PageCount |
현재 형식이 지정된 페이지 수를 나타내는 값을 가져옵니다. |
PageSize |
각 페이지의 제안 너비 및 높이를 가져오거나 설정합니다. |
Source |
페이지를 매기고 있는 소스 문서를 가져옵니다. |
메서드
이벤트
ComputePageCountCompleted |
ComputePageCountAsync 작업이 완료되면 발생합니다. (다음에서 상속됨 DocumentPaginator) |
GetPageCompleted |
GetPageAsync가 완료될 때 발생합니다. (다음에서 상속됨 DocumentPaginator) |
PagesChanged |
문서 콘텐츠가 변경되면 발생합니다. (다음에서 상속됨 DocumentPaginator) |
적용 대상
.NET