5 overrides of Source
PresentationFramework (4)
MS\Internal\Documents\FixedDocumentPaginator.cs (1)
134public override IDocumentPaginatorSource Source
MS\Internal\Documents\FixedDocumentSequencePaginator.cs (1)
134public override IDocumentPaginatorSource Source
MS\Internal\Documents\FlowDocumentPaginator.cs (1)
588public override IDocumentPaginatorSource Source
System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
136public override IDocumentPaginatorSource Source
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2565public override IDocumentPaginatorSource Source
28 references to Source
PresentationFramework (13)
MS\Internal\Documents\FixedDocumentPaginator.cs (1)
132/// <see cref="DocumentPaginator.Source"/>
MS\Internal\Documents\FixedDocumentSequencePaginator.cs (1)
132/// <see cref="DocumentPaginator.Source"/>
MS\Internal\Documents\FlowDocumentPaginator.cs (1)
586/// <see cref="DocumentPaginator.Source"/>
MS\Internal\Documents\PageCache.cs (2)
116if (_documentPaginator.Source is DependencyObject) 118FlowDirection flowDirection = (FlowDirection)((DependencyObject)_documentPaginator.Source).GetValue(FrameworkElement.FlowDirectionProperty);
System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
134/// <see cref="DocumentPaginator.Source"/> 138get { return _originalPaginator.Source; }
System\Windows\Documents\DocumentSequence.cs (4)
167childFixedDoc = childPaginator.Source as FixedDocument; 179childFixedDoc = childPaginator.Source as FixedDocument; 1156if (docRef.CurrentlyLoadedDoc == _documentPaginator.Source) 1199if (docRef.CurrentlyLoadedDoc == _documentPaginator.Source)
System\Windows\Documents\FixedFindEngine.cs (2)
112fixedDoc = (FixedDocument) childPaginator.Source; 195FixedDocument fixedDoc = childPaginator != null ? childPaginator.Source as FixedDocument : paginatorSource as FixedDocument;
PresentationUI (3)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (3)
436FixedDocumentSequence fds = docPaginator.Source as FixedDocumentSequence; 2395FixedDocument fd = _documentPaginator.Source as FixedDocument; 2567get { return _documentPaginator.Source; }
ReachFramework (12)
Serialization\Manager\NGCSerializer.cs (1)
388DependencyObject dependencyObject = paginator != null ? paginator.Source as DependencyObject : null;
Serialization\Manager\ReachIDocumentPaginatorSerializer.cs (1)
106DependencyObject dependencyObject = paginator.Source as DependencyObject;
Serialization\Manager\ReachIDocumentPaginatorSerializerAsync.cs (1)
146DependencyObject dependencyObject = paginator.Source as DependencyObject;
Serialization\Manager\XpsOMDocumentPaginatorSerializer.cs (1)
121DependencyObject dependencyObject = paginator.Source as DependencyObject;
Serialization\Manager\XpsOMSerializationManager.cs (4)
71if ((serializedObject as DocumentPaginator).Source is FixedDocument && 74serializedObject = (serializedObject as DocumentPaginator).Source; 77if ((serializedObject as DocumentPaginator).Source is FixedDocumentSequence && 80serializedObject = (serializedObject as DocumentPaginator).Source;
Serialization\Manager\XpsSerializationManager.cs (4)
101if((serializedObject as DocumentPaginator).Source is FixedDocument && 104serializedObject = (serializedObject as DocumentPaginator).Source; 107if( (serializedObject as DocumentPaginator).Source is FixedDocumentSequence&& 110serializedObject = (serializedObject as DocumentPaginator).Source;