2 types derived from DocumentPaginator
PresentationCore (1)
Core\CSharp\System\Windows\Documents\DynamicDocumentPaginator.cs (1)
26public abstract class DynamicDocumentPaginator : DocumentPaginator
PresentationFramework (1)
src\Framework\System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
39public sealed class AnnotationDocumentPaginator : DocumentPaginator
56 references to DocumentPaginator
PresentationCore (5)
Core\CSharp\System\Windows\Documents\DocumentPaginator.cs (4)
55/// Async version of <see cref="DocumentPaginator.GetPage"/> 67/// Async version of <see cref="DocumentPaginator.GetPage"/> 104/// Async version of <see cref="DocumentPaginator.ComputePageCount"/> 112/// Async version of <see cref="DocumentPaginator.ComputePageCount"/>
Core\CSharp\System\Windows\Documents\IDocumentPaginatorSource.cs (1)
30DocumentPaginator DocumentPaginator { get; }
PresentationFramework (51)
src\Framework\MS\Internal\Documents\DocumentGridPage.cs (2)
54public DocumentGridPage(DocumentPaginator paginator) : base() 445private DocumentPaginator _paginator;
src\Framework\MS\Internal\Documents\FixedDocumentPaginator.cs (7)
58/// <see cref="DocumentPaginator.GetPage"/> 66/// <see cref="DocumentPaginator.GetPageAsync(int,object)"/> 74/// <see cref="DocumentPaginator.CancelAsync"/> 116/// <see cref="DocumentPaginator.IsPageCountValid"/> 124/// <see cref="DocumentPaginator.PageCount"/> 132/// <see cref="DocumentPaginator.PageSize"/> 141/// <see cref="DocumentPaginator.Source"/>
src\Framework\MS\Internal\Documents\FixedDocumentSequencePaginator.cs (7)
58/// <see cref="DocumentPaginator.GetPage"/> 66/// <see cref="DocumentPaginator.GetPageAsync(int,object)"/> 74/// <see cref="DocumentPaginator.CancelAsync"/> 116/// <see cref="DocumentPaginator.IsPageCountValid"/> 124/// <see cref="DocumentPaginator.PageCount"/> 132/// <see cref="DocumentPaginator.PageSize"/> 141/// <see cref="DocumentPaginator.Source"/>
src\Framework\MS\Internal\Documents\FlowDocumentPaginator.cs (2)
71/// Async version of <see cref="DocumentPaginator.GetPage"/> 608/// <see cref="DocumentPaginator.Source"/>
src\Framework\MS\Internal\Documents\MultiPageTextView.cs (1)
1522DocumentPaginator documentPaginator = document.DocumentPaginator;
src\Framework\System\Windows\Annotations\AnnotationDocumentPaginator.cs (8)
53public AnnotationDocumentPaginator(DocumentPaginator originalPaginator, Stream annotationStore) : this(originalPaginator, new XmlStreamStore(annotationStore), FlowDirection.LeftToRight) 63public AnnotationDocumentPaginator(DocumentPaginator originalPaginator, Stream annotationStore, FlowDirection flowDirection) : this(originalPaginator, new XmlStreamStore(annotationStore), flowDirection) 72public AnnotationDocumentPaginator(DocumentPaginator originalPaginator, AnnotationStore annotationStore) : this(originalPaginator, annotationStore, FlowDirection.LeftToRight) 82public AnnotationDocumentPaginator(DocumentPaginator originalPaginator, AnnotationStore annotationStore, FlowDirection flowDirection) 150/// <see cref="DocumentPaginator.Source"/> 195/// Async version of <see cref="DocumentPaginator.GetPage"/> 222/// Async version of <see cref="DocumentPaginator.ComputePageCount"/> 531private DocumentPaginator _originalPaginator;
src\Framework\System\Windows\Controls\Primitives\DocumentPageView.cs (2)
73public DocumentPaginator DocumentPaginator 1010private DocumentPaginator _documentPaginator;
src\Framework\System\Windows\Controls\PrintDialog.cs (1)
449DocumentPaginator documentPaginator,
src\Framework\System\Windows\Documents\DocumentSequence.cs (7)
242public DocumentPaginator DocumentPaginator 252/// <see cref="System.Windows.Documents.DocumentPaginator.GetPage"/> 305/// <see cref="System.Windows.Documents.DocumentPaginator.GetPageAsync(int,object)"/> 368/// <see cref="System.Windows.Documents.DocumentPaginator.CancelAsync"/> 433/// <see cref="System.Windows.Documents.DocumentPaginator.IsPageCountValid"/> 462/// <see cref="System.Windows.Documents.DocumentPaginator.PageCount"/> 492/// <see cref="System.Windows.Documents.DocumentPaginator.PageSize"/>
src\Framework\System\Windows\Documents\FixedDocument.cs (7)
322public DocumentPaginator DocumentPaginator 332/// <see cref="System.Windows.Documents.DocumentPaginator.GetPage(int)"/> 379/// <see cref="System.Windows.Documents.DocumentPaginator.GetPageAsync(int,object)"/> 442/// <see cref="System.Windows.Documents.DocumentPaginator.CancelAsync"/> 556/// <see cref="System.Windows.Documents.DocumentPaginator.IsPageCountValid"/> 561/// <see cref="System.Windows.Documents.DocumentPaginator.PageCount"/> 566/// <see cref="System.Windows.Documents.DocumentPaginator.PageSize"/>
src\Framework\System\Windows\Documents\FlowDocument.cs (1)
1738DocumentPaginator IDocumentPaginatorSource.DocumentPaginator
src\Framework\System\Windows\Documents\Serialization\SerializerWriter.cs (6)
81public abstract void Write(DocumentPaginator documentPaginator); 91public abstract void Write(DocumentPaginator documentPaginator, PrintTicket printTicket); 96public abstract void WriteAsync(DocumentPaginator documentPaginator); 106public abstract void WriteAsync(DocumentPaginator documentPaginator, PrintTicket printTicket); 111public abstract void WriteAsync(DocumentPaginator documentPaginator, object userState); 121public abstract void WriteAsync(DocumentPaginator documentPaginator, PrintTicket printTicket, object userState);