5 writes to _formatter
PresentationFramework (5)
System\Windows\Documents\FlowDocument.cs (5)
1063
_formatter
= null;
1067
_formatter
= new FlowDocumentFormatter(this);
1225
_formatter
= null;
1717
_formatter
= null;
1721
_formatter
= new FlowDocumentPaginator(this);
27 references to _formatter
PresentationFramework (27)
System\Windows\Documents\FlowDocument.cs (27)
758
_formatter
?.OnContentInvalidated(true);
805
_formatter
?.OnContentInvalidated(!affectsRender);
967
_formatter
?.OnContentInvalidated(true, childStart, childEnd);
1060
if (
_formatter
!= null && !(
_formatter
is FlowDocumentFormatter))
1062
_formatter
.Suspend();
1065
if (
_formatter
== null)
1069
return (FlowDocumentFormatter)
_formatter
;
1121
return
_formatter
;
1132
if(
_formatter
!= null)
1134
return
_formatter
.IsLayoutDataValid;
1222
if (
_formatter
!= null)
1224
_formatter
.Suspend();
1241
fd.
_formatter
?.OnContentInvalidated(true);
1402
if (
_formatter
== null || !(
_formatter
is FlowDocumentFormatter))
1408
if (
_formatter
!= null)
1413
_formatter
.OnContentInvalidated(false, textSegment.Start, textSegment.End);
1415
if (
_formatter
is FlowDocumentFormatter)
1490
if (!args.AffectsRenderOnly || (
_formatter
!= null &&
_formatter
is FlowDocumentFormatter))
1503
_formatter
?.OnContentInvalidated(!args.AffectsRenderOnly, args.ITextPosition, segmentEnd);
1714
if (
_formatter
!= null && !(
_formatter
is FlowDocumentPaginator))
1716
_formatter
.Suspend();
1719
if (
_formatter
== null)
1723
return (FlowDocumentPaginator)
_formatter
;