Implemented interface member:
property
Height
MS.Internal.TextFormatting.ITextMetrics.Height
2 overrides of Height
PresentationCore (2)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (1)
2338public override double Height
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
1087public override double Height
11 references to Height
PresentationCore (8)
Core\CSharp\System\Windows\Media\FormattedText.cs (8)
1032if (_totalHeight + _currentLine.Height > _that._maxTextHeight) 1058Debug.Assert(_totalHeight + _currentLine.Height <= _that._maxTextHeight); 1080nextLineFits = (_totalHeight + _currentLine.Height + _nextLine.Height <= _that._maxTextHeight); 1117_previousHeight = _currentLine.Height; 1212double height = currentLine.Height; 1816double blackBoxBottom = origin.Y + currentLine.Height + currentLine.OverhangAfter; 1827metrics.Height += currentLine.Height;
PresentationFramework (3)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (1)
373internal double Height { get { return _line.Height; } }
src\Framework\MS\Internal\PtsHost\Line.cs (1)
845return TextDpi.ToTextDpi(_line.Height);
src\Framework\MS\Internal\Text\Line.cs (1)
410internal double Height { get { return _line.Height; } }