5 writes to _formatter
PresentationFramework (5)
System\Windows\Documents\FlowDocument.cs (5)
1070
_formatter
= null;
1074
_formatter
= new FlowDocumentFormatter(this);
1232
_formatter
= null;
1730
_formatter
= null;
1734
_formatter
= new FlowDocumentPaginator(this);
31 references to _formatter
PresentationFramework (31)
System\Windows\Documents\FlowDocument.cs (31)
759
_formatter
?.OnContentInvalidated(true);
806
if (
_formatter
!= null)
808
_formatter
.OnContentInvalidated(!affectsRender);
971
if (
_formatter
!= null)
973
_formatter
.OnContentInvalidated(true, childStart, childEnd);
1067
if (
_formatter
!= null && !(
_formatter
is FlowDocumentFormatter))
1069
_formatter
.Suspend();
1072
if (
_formatter
== null)
1076
return (FlowDocumentFormatter)
_formatter
;
1128
return
_formatter
;
1139
if(
_formatter
!= null)
1141
return
_formatter
.IsLayoutDataValid;
1229
if (
_formatter
!= null)
1231
_formatter
.Suspend();
1245
if (fd.
_formatter
!= null)
1250
fd.
_formatter
.OnContentInvalidated(true);
1412
if (
_formatter
== null || !(
_formatter
is FlowDocumentFormatter))
1418
if (
_formatter
!= null)
1423
_formatter
.OnContentInvalidated(false, textSegment.Start, textSegment.End);
1425
if (
_formatter
is FlowDocumentFormatter)
1500
if (!args.AffectsRenderOnly || (
_formatter
!= null &&
_formatter
is FlowDocumentFormatter))
1513
if (
_formatter
!= null)
1515
_formatter
.OnContentInvalidated(!args.AffectsRenderOnly, args.ITextPosition, segmentEnd);
1727
if (
_formatter
!= null && !(
_formatter
is FlowDocumentPaginator))
1729
_formatter
.Suspend();
1732
if (
_formatter
== null)
1736
return (FlowDocumentPaginator)
_formatter
;