2 overrides of GetCharacterHitFromDistance
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
832
public override CharacterHit
GetCharacterHitFromDistance
(
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
634
public override CharacterHit
GetCharacterHitFromDistance
(
9 references to GetCharacterHitFromDistance
PresentationFramework (9)
MS\Internal\Documents\TextBoxLine.cs (1)
287
return _line.
GetCharacterHitFromDistance
(distance - delta);
MS\Internal\PtsHost\Line.cs (4)
548
return line.
GetCharacterHitFromDistance
(TextDpi.FromTextDpi(urDistance));
550
return _line.
GetCharacterHitFromDistance
(TextDpi.FromTextDpi(urDistance - delta));
580
charIndex = line.
GetCharacterHitFromDistance
(TextDpi.FromTextDpi(urOffset));
585
charIndex = _line.
GetCharacterHitFromDistance
(TextDpi.FromTextDpi(urOffset - delta));
MS\Internal\Text\ComplexLine.cs (2)
275
charHit = line.
GetCharacterHitFromDistance
(offset);
279
charHit = _line.
GetCharacterHitFromDistance
(offset - delta);
MS\Internal\Text\Line.cs (2)
205
return line.
GetCharacterHitFromDistance
(distance);
207
return _line.
GetCharacterHitFromDistance
(distance - delta);