5 implementations of GetNextContextPosition
PresentationFramework (5)
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (1)
542ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
255ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
324ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
333ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
src\Framework\System\Windows\Documents\TextPointer.cs (1)
2471ITextPointer ITextPointer.GetNextContextPosition(LogicalDirection direction)
17 references to GetNextContextPosition
PresentationFramework (17)
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (1)
274return new StaticTextPointer(this, ((ITextPointer)position.Handle0).GetNextContextPosition(direction));
src\Framework\System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
168return new StaticTextPointer(this, ((ITextPointer)position.Handle0).GetNextContextPosition(direction));
src\Framework\System\Windows\Documents\FixedTextContainer.cs (1)
153return new StaticTextPointer(this, ((ITextPointer)position.Handle0).GetNextContextPosition(direction));
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
322/// <see cref="ITextPointer.GetNextContextPosition"/>
src\Framework\System\Windows\Documents\NullTextContainer.cs (1)
140return new StaticTextPointer(this, ((ITextPointer)position.Handle0).GetNextContextPosition(direction));
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
331/// <see cref="ITextPointer.GetNextContextPosition"/>
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (1)
426position = position.GetNextContextPosition(LogicalDirection.Forward);
src\Framework\System\windows\Documents\TextEditorMouse.cs (1)
749ITextPointer otherEdgePosition = mouseMovePosition.GetNextContextPosition(mouseMovePosition.LogicalDirection);
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
849position = position.GetNextContextPosition(LogicalDirection.Backward); 858position = position.GetNextContextPosition(LogicalDirection.Backward);
src\Framework\System\Windows\Documents\TextPointer.cs (1)
1003return (TextPointer)((ITextPointer)this).GetNextContextPosition(direction);
src\Framework\System\Windows\Documents\TextPointerBase.cs (3)
610position = position.GetNextContextPosition(direction); 752pointer = pointer.GetNextContextPosition(LogicalDirection.Backward); 1548thisPosition = thisPosition.GetNextContextPosition(direction);
src\Framework\System\Windows\Documents\TextRangeBase.cs (1)
1269start = start.GetNextContextPosition(LogicalDirection.Backward);
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (1)
219rangeEnd = rangeEnd.GetNextContextPosition(LogicalDirection.Backward);
src\Framework\System\windows\Documents\TextSelection.cs (1)
1970movingPosition = cursorPosition.GetNextContextPosition(cursorPosition.LogicalDirection);