3 overrides of FontRenderingEmSize
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
126public override double FontRenderingEmSize
PresentationFramework (2)
src\Framework\MS\Internal\Text\TextProperties.cs (1)
46public override double FontRenderingEmSize
src\Framework\MS\Internal\Text\TextSpanModifier.cs (1)
200public override double FontRenderingEmSize
23 references to FontRenderingEmSize
PresentationCore (21)
Core\CSharp\MS\Internal\TextFormatting\FormattedTextSymbols.cs (1)
153current.Properties.FontRenderingEmSize,
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
101_emSize == textRunProperties.FontRenderingEmSize
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (3)
1368return TextRun.Properties.Typeface.Baseline(TextRun.Properties.FontRenderingEmSize, 1, _pixelsPerDip, _textFormatterImp.TextFormattingMode); 1379return TextRun.Properties.Typeface.LineSpacing(TextRun.Properties.FontRenderingEmSize, 1, _pixelsPerDip, _textFormatterImp.TextFormattingMode); 1390get { return TextRun.Properties.FontRenderingEmSize; }
Core\CSharp\MS\Internal\TextFormatting\TextFormatterImp.cs (2)
499if ( paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize < 0 500|| paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize > realMaxFontRenderingEmSize)
Core\CSharp\MS\Internal\TextFormatting\TextMarkerSource.cs (1)
92defaultRunProperties.FontRenderingEmSize,
Core\CSharp\MS\Internal\TextFormatting\TextProperties.cs (2)
47_emSize = TextFormatterImp.RealToIdeal(paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize); 396return (int)Math.Round(properties.FontRenderingEmSize * 0.75 * _textRunLength * realToIdeal);
Core\CSharp\MS\Internal\TextFormatting\TextRunCacheImp.cs (2)
138if (properties.FontRenderingEmSize <= 0) 143if (properties.FontRenderingEmSize > realMaxFontRenderingEmSize)
Core\CSharp\MS\Internal\TextFormatting\TextShapeableCharacters.cs (2)
498return _properties.Typeface.LineSpacing(_properties.FontRenderingEmSize, 1, _properties.PixelsPerDip, _textFormattingMode); 510return _properties.Typeface.Baseline(_properties.FontRenderingEmSize, 1, _properties.PixelsPerDip, _textFormattingMode);
Core\CSharp\MS\Internal\TextFormatting\TextStore.cs (2)
1590(int)Math.Round(realToIdeal * runInfo.TextRun.Properties.FontRenderingEmSize), 1742(int)Math.Round(realToIdeal * runInfo.TextRun.Properties.FontRenderingEmSize),
Core\CSharp\System\Windows\Media\TextFormatting\TextCharacters.cs (4)
147if (textRunProperties.FontRenderingEmSize <= 0) 245textRunProperties.FontRenderingEmSize, 263textRunProperties.FontRenderingEmSize, 316textRunProperties.FontRenderingEmSize * emScale,
Core\CSharp\System\Windows\Media\TextFormatting\TextParagraphProperties.cs (1)
123get { return 4 * DefaultTextRunProperties.FontRenderingEmSize; }
PresentationFramework (2)
src\Framework\MS\Internal\PtsHost\TextParagraph.cs (1)
884dvr = TextDpi.ToTextDpi(_lineProperties.CalcLineAdvanceForTextParagraph(this, dcp, _lineProperties.DefaultTextRunProperties.FontRenderingEmSize));
src\Framework\MS\Internal\Text\TextSpanModifier.cs (1)
202get { return _runProperties.FontRenderingEmSize; }