12 references to ContentAdded
PresentationFramework (12)
System\Windows\Controls\PasswordTextContainer.cs (3)
644Invariant.Assert(precursorTextChange == PrecursorTextChangeType.ContentAdded || precursorTextChange == PrecursorTextChangeType.ContentRemoved); 645TextChangeType textChange = (precursorTextChange == PrecursorTextChangeType.ContentAdded) ? 678operation = PrecursorTextChangeType.ContentAdded;
System\Windows\Documents\DocumentSequenceTextContainer.cs (3)
576Invariant.Assert(precursorTextChange == PrecursorTextChangeType.ContentAdded || precursorTextChange == PrecursorTextChangeType.ContentRemoved); 577TextChangeType textChange = (precursorTextChange == PrecursorTextChangeType.ContentAdded) ? 647AddChange(changeStart, symbolCount, PrecursorTextChangeType.ContentAdded);
System\Windows\Documents\TextContainer.cs (4)
924AddChange(originalPosition, /* symbolCount */ textLength, /* charCount */ textLength, PrecursorTextChangeType.ContentAdded); 1122AddChange(startEdgePosition, elementText == null ? 2 : elementText.Length, deltaCharCount, PrecursorTextChangeType.ContentAdded); 1214AddChange(insertPosition, 1, 1, PrecursorTextChangeType.ContentAdded); 3440AddChange(startEdgePosition, /* symbolCount */ 0, /* IMECharCount */ 1, PrecursorTextChangeType.ContentAdded);
System\Windows\Documents\TextContainerChangedEventArgs.cs (2)
55if (textChange == PrecursorTextChangeType.ContentAdded || 226if (textChange == PrecursorTextChangeType.ContentAdded || textChange == PrecursorTextChangeType.ElementAdded)