5 implementations of IsFrozen
PresentationFramework (5)
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (1)
669bool ITextPointer.IsFrozen
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
403bool ITextPointer.IsFrozen
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
631bool ITextPointer.IsFrozen
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
475bool ITextPointer.IsFrozen
src\Framework\System\Windows\Documents\TextPointer.cs (1)
3725bool ITextPointer.IsFrozen
9 references to IsFrozen
PresentationFramework (9)
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
629/// <see cref="ITextPointer.IsFrozen"/>
src\Framework\System\Windows\Documents\FixedTextView.cs (1)
1221Debug.Assert(!textPointer.IsFrozen, "Can't reposition a frozen pointer!");
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
473/// <see cref="ITextPointer.IsFrozen"/>
src\Framework\System\Windows\Documents\TextPointerBase.cs (5)
814Invariant.Assert(!thisPointer.IsFrozen, "Can't reposition a frozen pointer!"); 966Invariant.Assert(!thisNavigator.IsFrozen, "Can't reposition a frozen pointer!"); 1076Invariant.Assert(!thisNavigator.IsFrozen, "Can't reposition a frozen pointer!"); 1108if (thisPointer.IsFrozen && thisPointer.LogicalDirection == logicalDirection) 1145Invariant.Assert(!thisNavigator.IsFrozen, "Can't reposition a frozen pointer!");
src\Framework\System\windows\Documents\TextSelection.cs (1)
402Invariant.Assert(_anchorPosition == null || _anchorPosition.IsFrozen);