3 writes to _typingUndoUnit
PresentationFramework (3)
src\Framework\System\windows\Documents\TextEditorTyping.cs (3)
155This._typingUndoUnit = null; 1841This._typingUndoUnit = new TextParentUndoUnit(This.Selection); 1871This._typingUndoUnit = null;
11 references to _typingUndoUnit
PresentationFramework (11)
src\Framework\System\windows\Documents\TextEditorTyping.cs (11)
1835if (This._typingUndoUnit != null && undoManager.LastUnit == This._typingUndoUnit && !This._typingUndoUnit.Locked) 1837undoManager.Reopen(This._typingUndoUnit); 1842undoManager.Open(This._typingUndoUnit); 1860if (This._typingUndoUnit != null && undoManager.LastUnit == This._typingUndoUnit && !This._typingUndoUnit.Locked) 1862if (This._typingUndoUnit is TextParentUndoUnit) 1864((TextParentUndoUnit)This._typingUndoUnit).RecordRedoSelectionState(); 1866undoManager.Close(This._typingUndoUnit, closeAction);