Implemented interface member:
property
Height
MS.Internal.TextFormatting.ITextMetrics.Height
2 overrides of Height
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
2276public override double Height
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
1057public override double Height
11 references to Height
PresentationCore (8)
System\Windows\Media\FormattedText.cs (8)
984if (_totalHeight + _currentLine.Height > _that._maxTextHeight) 1010Debug.Assert(_totalHeight + _currentLine.Height <= _that._maxTextHeight); 1032nextLineFits = (_totalHeight + _currentLine.Height + _nextLine.Height <= _that._maxTextHeight); 1068_previousHeight = _currentLine.Height; 1162double height = currentLine.Height; 1762double blackBoxBottom = origin.Y + currentLine.Height + currentLine.OverhangAfter; 1773metrics.Height += currentLine.Height;
PresentationFramework (3)
MS\Internal\Documents\TextBoxLine.cs (1)
360internal double Height { get { return _line.Height; } }
MS\Internal\PtsHost\Line.cs (1)
823return TextDpi.ToTextDpi(_line.Height);
MS\Internal\Text\Line.cs (1)
399internal double Height { get { return _line.Height; } }