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