12 references to ContentAdded
PresentationFramework (12)
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (3)
650Invariant.Assert(precursorTextChange == PrecursorTextChangeType.ContentAdded || precursorTextChange == PrecursorTextChangeType.ContentRemoved); 651TextChangeType textChange = (precursorTextChange == PrecursorTextChangeType.ContentAdded) ? 684operation = PrecursorTextChangeType.ContentAdded;
src\Framework\System\Windows\Documents\DocumentSequenceTextContainer.cs (3)
583Invariant.Assert(precursorTextChange == PrecursorTextChangeType.ContentAdded || precursorTextChange == PrecursorTextChangeType.ContentRemoved); 584TextChangeType textChange = (precursorTextChange == PrecursorTextChangeType.ContentAdded) ? 655AddChange(changeStart, symbolCount, PrecursorTextChangeType.ContentAdded);
src\Framework\System\Windows\Documents\TextContainer.cs (4)
939AddChange(originalPosition, /* symbolCount */ textLength, /* charCount */ textLength, PrecursorTextChangeType.ContentAdded); 1137AddChange(startEdgePosition, elementText == null ? 2 : elementText.Length, deltaCharCount, PrecursorTextChangeType.ContentAdded); 1229AddChange(insertPosition, 1, 1, PrecursorTextChangeType.ContentAdded); 3456AddChange(startEdgePosition, /* symbolCount */ 0, /* IMECharCount */ 1, PrecursorTextChangeType.ContentAdded);
src\Framework\System\Windows\Documents\TextContainerChangedEventArgs.cs (2)
59if (textChange == PrecursorTextChangeType.ContentAdded || 230if (textChange == PrecursorTextChangeType.ContentAdded || textChange == PrecursorTextChangeType.ElementAdded)