5 writes to _formatter
PresentationFramework (5)
System\Windows\Documents\FlowDocument.cs (5)
1064
_formatter
= null;
1068
_formatter
= new FlowDocumentFormatter(this);
1226
_formatter
= null;
1718
_formatter
= null;
1722
_formatter
= new FlowDocumentPaginator(this);
27 references to _formatter
PresentationFramework (27)
System\Windows\Documents\FlowDocument.cs (27)
759
_formatter
?.OnContentInvalidated(true);
806
_formatter
?.OnContentInvalidated(!affectsRender);
968
_formatter
?.OnContentInvalidated(true, childStart, childEnd);
1061
if (
_formatter
!= null && !(
_formatter
is FlowDocumentFormatter))
1063
_formatter
.Suspend();
1066
if (
_formatter
== null)
1070
return (FlowDocumentFormatter)
_formatter
;
1122
return
_formatter
;
1133
if(
_formatter
!= null)
1135
return
_formatter
.IsLayoutDataValid;
1223
if (
_formatter
!= null)
1225
_formatter
.Suspend();
1242
fd.
_formatter
?.OnContentInvalidated(true);
1403
if (
_formatter
== null || !(
_formatter
is FlowDocumentFormatter))
1409
if (
_formatter
!= null)
1414
_formatter
.OnContentInvalidated(false, textSegment.Start, textSegment.End);
1416
if (
_formatter
is FlowDocumentFormatter)
1491
if (!args.AffectsRenderOnly || (
_formatter
!= null &&
_formatter
is FlowDocumentFormatter))
1504
_formatter
?.OnContentInvalidated(!args.AffectsRenderOnly, args.ITextPosition, segmentEnd);
1715
if (
_formatter
!= null && !(
_formatter
is FlowDocumentPaginator))
1717
_formatter
.Suspend();
1720
if (
_formatter
== null)
1724
return (FlowDocumentPaginator)
_formatter
;