2 implementations of OnContentInvalidated
PresentationFramework (2)
MS\Internal\Documents\FlowDocumentFormatter.cs (1)
321void IFlowDocumentFormatter.OnContentInvalidated(bool affectsLayout, ITextPointer start, ITextPointer end)
MS\Internal\Documents\FlowDocumentPaginator.cs (1)
1103void IFlowDocumentFormatter.OnContentInvalidated(bool affectsLayout, ITextPointer start, ITextPointer end)
4 references to OnContentInvalidated
PresentationFramework (4)
MS\Internal\PtsHost\TableParagraph.cs (1)
553StructuralCache.FormattingOwner.Formatter?.OnContentInvalidated(true, Table.ContentStart, Table.ContentEnd);
System\Windows\Documents\FlowDocument.cs (3)
967_formatter?.OnContentInvalidated(true, childStart, childEnd); 1413_formatter.OnContentInvalidated(false, textSegment.Start, textSegment.End); 1503_formatter?.OnContentInvalidated(!args.AffectsRenderOnly, args.ITextPosition, segmentEnd);