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