5 implementations of GetNextContextPosition
PresentationFramework (5)
System\Windows\Controls\PasswordTextNavigator.cs (1)
535ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
242ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
System\Windows\Documents\FixedTextPointer.cs (1)
301ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
System\Windows\Documents\NullTextNavigator.cs (1)
325ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
System\Windows\Documents\TextPointer.cs (1)
2445ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
17 references to GetNextContextPosition
PresentationFramework (17)
System\Windows\Controls\PasswordTextContainer.cs (1)
264return new StaticTextPointer(this, ((ITextPointer)position.Handle0).GetNextContextPosition(direction));
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
147return new StaticTextPointer(this, ((ITextPointer)position.Handle0).GetNextContextPosition(direction));
System\Windows\Documents\FixedTextContainer.cs (1)
132return new StaticTextPointer(this, ((ITextPointer)position.Handle0).GetNextContextPosition(direction));
System\Windows\Documents\FixedTextPointer.cs (1)
299/// <see cref="ITextPointer.GetNextContextPosition"/>
System\Windows\Documents\NullTextContainer.cs (1)
132return new StaticTextPointer(this, ((ITextPointer)position.Handle0).GetNextContextPosition(direction));
System\Windows\Documents\NullTextNavigator.cs (1)
323/// <see cref="ITextPointer.GetNextContextPosition"/>
System\windows\Documents\TextEditorContextMenu.cs (1)
401position = position.GetNextContextPosition(LogicalDirection.Forward);
System\windows\Documents\TextEditorMouse.cs (1)
730ITextPointer otherEdgePosition = mouseMovePosition.GetNextContextPosition(mouseMovePosition.LogicalDirection);
System\windows\Documents\TextEditorTyping.cs (2)
813position = position.GetNextContextPosition(LogicalDirection.Backward); 822position = position.GetNextContextPosition(LogicalDirection.Backward);
System\Windows\Documents\TextPointer.cs (1)
986return (TextPointer)((ITextPointer)this).GetNextContextPosition(direction);
System\Windows\Documents\TextPointerBase.cs (3)
605position = position.GetNextContextPosition(direction); 744pointer = pointer.GetNextContextPosition(LogicalDirection.Backward); 1540thisPosition = thisPosition.GetNextContextPosition(direction);
System\Windows\Documents\TextRangeBase.cs (1)
1254start = start.GetNextContextPosition(LogicalDirection.Backward);
System\Windows\Documents\TextRangeSerialization.cs (1)
206rangeEnd = rangeEnd.GetNextContextPosition(LogicalDirection.Backward);
System\windows\Documents\TextSelection.cs (1)
1943movingPosition = cursorPosition.GetNextContextPosition(cursorPosition.LogicalDirection);