5 implementations of IsFrozen
PresentationFramework (5)
System\Windows\Controls\PasswordTextNavigator.cs (1)
662bool ITextPointer.IsFrozen
System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
390bool ITextPointer.IsFrozen
System\Windows\Documents\FixedTextPointer.cs (1)
605bool ITextPointer.IsFrozen
System\Windows\Documents\NullTextNavigator.cs (1)
467bool ITextPointer.IsFrozen
System\Windows\Documents\TextPointer.cs (1)
3693bool ITextPointer.IsFrozen
9 references to IsFrozen
PresentationFramework (9)
System\Windows\Documents\FixedTextPointer.cs (1)
603/// <see cref="ITextPointer.IsFrozen"/>
System\Windows\Documents\FixedTextView.cs (1)
1189Debug.Assert(!textPointer.IsFrozen, "Can't reposition a frozen pointer!");
System\Windows\Documents\NullTextNavigator.cs (1)
465/// <see cref="ITextPointer.IsFrozen"/>
System\Windows\Documents\TextPointerBase.cs (5)
806Invariant.Assert(!thisPointer.IsFrozen, "Can't reposition a frozen pointer!"); 958Invariant.Assert(!thisNavigator.IsFrozen, "Can't reposition a frozen pointer!"); 1068Invariant.Assert(!thisNavigator.IsFrozen, "Can't reposition a frozen pointer!"); 1100if (thisPointer.IsFrozen && thisPointer.LogicalDirection == logicalDirection) 1137Invariant.Assert(!thisNavigator.IsFrozen, "Can't reposition a frozen pointer!");
System\windows\Documents\TextSelection.cs (1)
383Invariant.Assert(_anchorPosition == null || _anchorPosition.IsFrozen);