4 overrides of Source
PresentationFramework (4)
src\Framework\MS\Internal\Documents\FixedDocumentPaginator.cs (1)
143public override IDocumentPaginatorSource Source
src\Framework\MS\Internal\Documents\FixedDocumentSequencePaginator.cs (1)
143public override IDocumentPaginatorSource Source
src\Framework\MS\Internal\Documents\FlowDocumentPaginator.cs (1)
610public override IDocumentPaginatorSource Source
src\Framework\System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
152public override IDocumentPaginatorSource Source
12 references to Source
PresentationFramework (12)
src\Framework\MS\Internal\Documents\FixedDocumentPaginator.cs (1)
141/// <see cref="DocumentPaginator.Source"/>
src\Framework\MS\Internal\Documents\FixedDocumentSequencePaginator.cs (1)
141/// <see cref="DocumentPaginator.Source"/>
src\Framework\MS\Internal\Documents\FlowDocumentPaginator.cs (1)
608/// <see cref="DocumentPaginator.Source"/>
src\Framework\MS\Internal\Documents\PageCache.cs (2)
128if (_documentPaginator.Source is DependencyObject) 130FlowDirection flowDirection = (FlowDirection)((DependencyObject)_documentPaginator.Source).GetValue(FrameworkElement.FlowDirectionProperty);
src\Framework\System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
150/// <see cref="DocumentPaginator.Source"/> 154get { return _originalPaginator.Source; }
src\Framework\System\Windows\Documents\DocumentSequence.cs (3)
190childFixedDoc = childPaginator.Source as FixedDocument; 202childFixedDoc = childPaginator.Source as FixedDocument; 1202if (docRef.CurrentlyLoadedDoc == _documentPaginator.Source)
src\Framework\System\Windows\Documents\FixedFindEngine.cs (2)
122fixedDoc = (FixedDocument) childPaginator.Source; 205FixedDocument fixedDoc = childPaginator != null ? childPaginator.Source as FixedDocument : paginatorSource as FixedDocument;