5 overrides of Source
PresentationFramework (4)
MS\Internal\Documents\FixedDocumentPaginator.cs (1)
135
public override IDocumentPaginatorSource
Source
MS\Internal\Documents\FixedDocumentSequencePaginator.cs (1)
135
public override IDocumentPaginatorSource
Source
MS\Internal\Documents\FlowDocumentPaginator.cs (1)
589
public override IDocumentPaginatorSource
Source
System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
137
public override IDocumentPaginatorSource
Source
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2566
public override IDocumentPaginatorSource
Source
28 references to Source
PresentationFramework (13)
MS\Internal\Documents\FixedDocumentPaginator.cs (1)
133
/// <see cref="DocumentPaginator.
Source
"/>
MS\Internal\Documents\FixedDocumentSequencePaginator.cs (1)
133
/// <see cref="DocumentPaginator.
Source
"/>
MS\Internal\Documents\FlowDocumentPaginator.cs (1)
587
/// <see cref="DocumentPaginator.
Source
"/>
MS\Internal\Documents\PageCache.cs (2)
117
if (_documentPaginator.
Source
is DependencyObject)
119
FlowDirection flowDirection = (FlowDirection)((DependencyObject)_documentPaginator.
Source
).GetValue(FrameworkElement.FlowDirectionProperty);
System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
135
/// <see cref="DocumentPaginator.
Source
"/>
139
get { return _originalPaginator.
Source
; }
System\Windows\Documents\DocumentSequence.cs (4)
168
childFixedDoc = childPaginator.
Source
as FixedDocument;
180
childFixedDoc = childPaginator.
Source
as FixedDocument;
1157
if (docRef.CurrentlyLoadedDoc == _documentPaginator.
Source
)
1200
if (docRef.CurrentlyLoadedDoc == _documentPaginator.
Source
)
System\Windows\Documents\FixedFindEngine.cs (2)
113
fixedDoc = (FixedDocument) childPaginator.
Source
;
196
FixedDocument fixedDoc = childPaginator != null ? childPaginator.
Source
as FixedDocument : paginatorSource as FixedDocument;
PresentationUI (3)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (3)
437
FixedDocumentSequence fds = docPaginator.
Source
as FixedDocumentSequence;
2396
FixedDocument fd = _documentPaginator.
Source
as FixedDocument;
2568
get { return _documentPaginator.
Source
; }
ReachFramework (12)
Serialization\Manager\NGCSerializer.cs (1)
389
DependencyObject dependencyObject = paginator != null ? paginator.
Source
as DependencyObject : null;
Serialization\Manager\ReachIDocumentPaginatorSerializer.cs (1)
107
DependencyObject dependencyObject = paginator.
Source
as DependencyObject;
Serialization\Manager\ReachIDocumentPaginatorSerializerAsync.cs (1)
147
DependencyObject dependencyObject = paginator.
Source
as DependencyObject;
Serialization\Manager\XpsOMDocumentPaginatorSerializer.cs (1)
122
DependencyObject dependencyObject = paginator.
Source
as DependencyObject;
Serialization\Manager\XpsOMSerializationManager.cs (4)
72
if ((serializedObject as DocumentPaginator).
Source
is FixedDocument &&
75
serializedObject = (serializedObject as DocumentPaginator).
Source
;
78
if ((serializedObject as DocumentPaginator).
Source
is FixedDocumentSequence &&
81
serializedObject = (serializedObject as DocumentPaginator).
Source
;
Serialization\Manager\XpsSerializationManager.cs (4)
102
if((serializedObject as DocumentPaginator).
Source
is FixedDocument &&
105
serializedObject = (serializedObject as DocumentPaginator).
Source
;
108
if( (serializedObject as DocumentPaginator).
Source
is FixedDocumentSequence&&
111
serializedObject = (serializedObject as DocumentPaginator).
Source
;