12 references to ContentAdded
PresentationFramework (12)
System\Windows\Controls\PasswordTextContainer.cs (3)
640Invariant.Assert(precursorTextChange == PrecursorTextChangeType.ContentAdded || precursorTextChange == PrecursorTextChangeType.ContentRemoved); 641TextChangeType textChange = (precursorTextChange == PrecursorTextChangeType.ContentAdded) ? 674operation = PrecursorTextChangeType.ContentAdded;
System\Windows\Documents\DocumentSequenceTextContainer.cs (3)
558Invariant.Assert(precursorTextChange == PrecursorTextChangeType.ContentAdded || precursorTextChange == PrecursorTextChangeType.ContentRemoved); 559TextChangeType textChange = (precursorTextChange == PrecursorTextChangeType.ContentAdded) ? 629AddChange(changeStart, symbolCount, PrecursorTextChangeType.ContentAdded);
System\Windows\Documents\TextContainer.cs (4)
918AddChange(originalPosition, /* symbolCount */ textLength, /* charCount */ textLength, PrecursorTextChangeType.ContentAdded); 1113AddChange(startEdgePosition, elementText == null ? 2 : elementText.Length, deltaCharCount, PrecursorTextChangeType.ContentAdded); 1205AddChange(insertPosition, 1, 1, PrecursorTextChangeType.ContentAdded); 3401AddChange(startEdgePosition, /* symbolCount */ 0, /* IMECharCount */ 1, PrecursorTextChangeType.ContentAdded);
System\Windows\Documents\TextContainerChangedEventArgs.cs (2)
51if (textChange == PrecursorTextChangeType.ContentAdded || 224if (textChange == PrecursorTextChangeType.ContentAdded || textChange == PrecursorTextChangeType.ElementAdded)