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