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