5 implementations of IsFrozen
PresentationFramework (5)
System\Windows\Controls\PasswordTextNavigator.cs (1)
663bool ITextPointer.IsFrozen
System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
391bool ITextPointer.IsFrozen
System\Windows\Documents\FixedTextPointer.cs (1)
606bool ITextPointer.IsFrozen
System\Windows\Documents\NullTextNavigator.cs (1)
468bool ITextPointer.IsFrozen
System\Windows\Documents\TextPointer.cs (1)
3694bool ITextPointer.IsFrozen
9 references to IsFrozen
PresentationFramework (9)
System\Windows\Documents\FixedTextPointer.cs (1)
604/// <see cref="ITextPointer.IsFrozen"/>
System\Windows\Documents\FixedTextView.cs (1)
1196Debug.Assert(!textPointer.IsFrozen, "Can't reposition a frozen pointer!");
System\Windows\Documents\NullTextNavigator.cs (1)
466/// <see cref="ITextPointer.IsFrozen"/>
System\Windows\Documents\TextPointerBase.cs (5)
807Invariant.Assert(!thisPointer.IsFrozen, "Can't reposition a frozen pointer!"); 959Invariant.Assert(!thisNavigator.IsFrozen, "Can't reposition a frozen pointer!"); 1069Invariant.Assert(!thisNavigator.IsFrozen, "Can't reposition a frozen pointer!"); 1101if (thisPointer.IsFrozen && thisPointer.LogicalDirection == logicalDirection) 1138Invariant.Assert(!thisNavigator.IsFrozen, "Can't reposition a frozen pointer!");
System\windows\Documents\TextSelection.cs (1)
396Invariant.Assert(_anchorPosition == null || _anchorPosition.IsFrozen);