5 implementations of GetCharacterRect
PresentationFramework (5)
System\Windows\Controls\PasswordTextNavigator.cs (1)
523Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
514Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
System\Windows\Documents\FixedTextPointer.cs (1)
470Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
System\Windows\Documents\NullTextNavigator.cs (1)
289Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
System\Windows\Documents\TextPointer.cs (1)
2659Rect ITextPointer.GetCharacterRect(LogicalDirection direction)
11 references to GetCharacterRect
PresentationFramework (11)
System\Windows\Documents\FixedTextPointer.cs (1)
468/// <see cref="ITextPointer.GetCharacterRect"/>
System\Windows\Documents\NullTextNavigator.cs (1)
287/// <see cref="ITextPointer.GetCharacterRect"/>
System\windows\Documents\TextEditor.cs (1)
1519lastCharacterRect = cursorPosition.GetCharacterRect(LogicalDirection.Backward);
System\windows\Documents\TextEditorContextMenu.cs (1)
265Rect positionRect = position.GetCharacterRect(direction);
System\windows\Documents\TextEditorMouse.cs (1)
579Rect lastCharacterRect = snappedCursorPosition.GetCharacterRect(LogicalDirection.Backward);
System\Windows\Documents\TextStore.cs (6)
1072Rect rectStart = startPointer.GetCharacterRect(LogicalDirection.Forward); 1102lineRect = navigator.GetCharacterRect(LogicalDirection.Forward); 3193Rect lineBounds = start.GetCharacterRect(LogicalDirection.Forward); 3194lineBounds.Union(end.GetCharacterRect(LogicalDirection.Backward)); 3204lineBounds.Union(navigator.GetCharacterRect(LogicalDirection.Backward)); 3209lineBounds.Union(navigator.GetCharacterRect(LogicalDirection.Backward));