Implemented interface member:
property
Height
MS.Internal.TextFormatting.ITextMetrics.Height
2 overrides of Height
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
2277public override double Height
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
1064public override double Height
11 references to Height
PresentationCore (8)
System\Windows\Media\FormattedText.cs (8)
985if (_totalHeight + _currentLine.Height > _that._maxTextHeight) 1011Debug.Assert(_totalHeight + _currentLine.Height <= _that._maxTextHeight); 1033nextLineFits = (_totalHeight + _currentLine.Height + _nextLine.Height <= _that._maxTextHeight); 1070_previousHeight = _currentLine.Height; 1165double height = currentLine.Height; 1765double blackBoxBottom = origin.Y + currentLine.Height + currentLine.OverhangAfter; 1776metrics.Height += currentLine.Height;
PresentationFramework (3)
MS\Internal\Documents\TextBoxLine.cs (1)
364internal double Height { get { return _line.Height; } }
MS\Internal\PtsHost\Line.cs (1)
827return TextDpi.ToTextDpi(_line.Height);
MS\Internal\Text\Line.cs (1)
400internal double Height { get { return _line.Height; } }