5 implementations of GetCharacterRect
PresentationFramework (5)
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (1)
525Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
518Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
485Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
291Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
src\Framework\System\Windows\Documents\TextPointer.cs (1)
2685Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
11 references to GetCharacterRect
PresentationFramework (11)
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
483/// <see cref="ITextPointer.GetCharacterRect"/>
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
289/// <see cref="ITextPointer.GetCharacterRect"/>
src\Framework\System\windows\Documents\TextEditor.cs (1)
1547lastCharacterRect = cursorPosition.GetCharacterRect(LogicalDirection.Backward);
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (1)
279Rect positionRect = position.GetCharacterRect(direction);
src\Framework\System\windows\Documents\TextEditorMouse.cs (1)
581Rect lastCharacterRect = snappedCursorPosition.GetCharacterRect(LogicalDirection.Backward);
src\Framework\System\Windows\Documents\TextStore.cs (6)
932Rect rectStart = startPointer.GetCharacterRect(LogicalDirection.Forward); 963lineRect = navigator.GetCharacterRect(LogicalDirection.Forward); 3093Rect lineBounds = start.GetCharacterRect(LogicalDirection.Forward); 3094lineBounds.Union(end.GetCharacterRect(LogicalDirection.Backward)); 3104lineBounds.Union(navigator.GetCharacterRect(LogicalDirection.Backward)); 3109lineBounds.Union(navigator.GetCharacterRect(LogicalDirection.Backward));