2 overrides of GetCharacterHitFromDistance
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
833
public override CharacterHit
GetCharacterHitFromDistance
(
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
641
public override CharacterHit
GetCharacterHitFromDistance
(
9 references to GetCharacterHitFromDistance
PresentationFramework (9)
MS\Internal\Documents\TextBoxLine.cs (1)
288
return _line.
GetCharacterHitFromDistance
(distance - delta);
MS\Internal\PtsHost\Line.cs (4)
552
return line.
GetCharacterHitFromDistance
(TextDpi.FromTextDpi(urDistance));
554
return _line.
GetCharacterHitFromDistance
(TextDpi.FromTextDpi(urDistance - delta));
584
charIndex = line.
GetCharacterHitFromDistance
(TextDpi.FromTextDpi(urOffset));
589
charIndex = _line.
GetCharacterHitFromDistance
(TextDpi.FromTextDpi(urOffset - delta));
MS\Internal\Text\ComplexLine.cs (2)
276
charHit = line.
GetCharacterHitFromDistance
(offset);
280
charHit = _line.
GetCharacterHitFromDistance
(offset - delta);
MS\Internal\Text\Line.cs (2)
206
return line.
GetCharacterHitFromDistance
(distance);
208
return _line.
GetCharacterHitFromDistance
(distance - delta);