5 writes to _formatter
PresentationFramework (5)
src\Framework\System\Windows\Documents\FlowDocument.cs (5)
1078
_formatter
= null;
1082
_formatter
= new FlowDocumentFormatter(this);
1240
_formatter
= null;
1745
_formatter
= null;
1749
_formatter
= new FlowDocumentPaginator(this);
31 references to _formatter
PresentationFramework (31)
src\Framework\System\Windows\Documents\FlowDocument.cs (31)
767
_formatter
?.OnContentInvalidated(true);
814
if (
_formatter
!= null)
816
_formatter
.OnContentInvalidated(!affectsRender);
979
if (
_formatter
!= null)
981
_formatter
.OnContentInvalidated(true, childStart, childEnd);
1075
if (
_formatter
!= null && !(
_formatter
is FlowDocumentFormatter))
1077
_formatter
.Suspend();
1080
if (
_formatter
== null)
1084
return (FlowDocumentFormatter)
_formatter
;
1136
return
_formatter
;
1147
if(
_formatter
!= null)
1149
return
_formatter
.IsLayoutDataValid;
1237
if (
_formatter
!= null)
1239
_formatter
.Suspend();
1253
if (fd.
_formatter
!= null)
1258
fd.
_formatter
.OnContentInvalidated(true);
1421
if (
_formatter
== null || !(
_formatter
is FlowDocumentFormatter))
1427
if (
_formatter
!= null)
1432
_formatter
.OnContentInvalidated(false, textSegment.Start, textSegment.End);
1434
if (
_formatter
is FlowDocumentFormatter)
1509
if (!args.AffectsRenderOnly || (
_formatter
!= null &&
_formatter
is FlowDocumentFormatter))
1522
if (
_formatter
!= null)
1524
_formatter
.OnContentInvalidated(!args.AffectsRenderOnly, args.ITextPosition, segmentEnd);
1742
if (
_formatter
!= null && !(
_formatter
is FlowDocumentPaginator))
1744
_formatter
.Suspend();
1747
if (
_formatter
== null)
1751
return (FlowDocumentPaginator)
_formatter
;