3 overrides of FontRenderingEmSize
PresentationCore (1)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
122
public override double
FontRenderingEmSize
PresentationFramework (2)
MS\Internal\Text\TextProperties.cs (1)
40
public override double
FontRenderingEmSize
MS\Internal\Text\TextSpanModifier.cs (1)
189
public override double
FontRenderingEmSize
23 references to FontRenderingEmSize
PresentationCore (21)
MS\Internal\TextFormatting\FormattedTextSymbols.cs (1)
134
current.Properties.
FontRenderingEmSize
,
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
97
_emSize == textRunProperties.
FontRenderingEmSize
MS\Internal\TextFormatting\SimpleTextLine.cs (3)
1338
return TextRun.Properties.Typeface.Baseline(TextRun.Properties.
FontRenderingEmSize
, 1, _pixelsPerDip, _textFormatterImp.TextFormattingMode);
1349
return TextRun.Properties.Typeface.LineSpacing(TextRun.Properties.
FontRenderingEmSize
, 1, _pixelsPerDip, _textFormatterImp.TextFormattingMode);
1360
get { return TextRun.Properties.
FontRenderingEmSize
; }
MS\Internal\TextFormatting\TextFormatterImp.cs (2)
463
ArgumentOutOfRangeException.ThrowIfNegative(paragraphProperties.DefaultTextRunProperties.
FontRenderingEmSize
, "paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize");
464
ArgumentOutOfRangeException.ThrowIfGreaterThan(paragraphProperties.DefaultTextRunProperties.
FontRenderingEmSize
, realMaxFontRenderingEmSize, "paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize");
MS\Internal\TextFormatting\TextMarkerSource.cs (1)
82
defaultRunProperties.
FontRenderingEmSize
,
MS\Internal\TextFormatting\TextProperties.cs (2)
38
_emSize = TextFormatterImp.RealToIdeal(paragraphProperties.DefaultTextRunProperties.
FontRenderingEmSize
);
387
return (int)Math.Round(properties.
FontRenderingEmSize
* 0.75 * _textRunLength * realToIdeal);
MS\Internal\TextFormatting\TextRunCacheImp.cs (2)
117
if (properties.
FontRenderingEmSize
<= 0)
122
if (properties.
FontRenderingEmSize
> realMaxFontRenderingEmSize)
MS\Internal\TextFormatting\TextShapeableCharacters.cs (2)
481
return _properties.Typeface.LineSpacing(_properties.
FontRenderingEmSize
, 1, _properties.PixelsPerDip, _textFormattingMode);
493
return _properties.Typeface.Baseline(_properties.
FontRenderingEmSize
, 1, _properties.PixelsPerDip, _textFormattingMode);
MS\Internal\TextFormatting\TextStore.cs (2)
1563
(int)Math.Round(realToIdeal * runInfo.TextRun.Properties.
FontRenderingEmSize
),
1718
(int)Math.Round(realToIdeal * runInfo.TextRun.Properties.
FontRenderingEmSize
),
System\Windows\Media\textformatting\TextCharacters.cs (4)
122
ArgumentOutOfRangeException.ThrowIfNegativeOrZero(textRunProperties.
FontRenderingEmSize
, "textRunProperties.FontRenderingEmSize");
217
textRunProperties.
FontRenderingEmSize
,
235
textRunProperties.
FontRenderingEmSize
,
288
textRunProperties.
FontRenderingEmSize
* emScale,
System\Windows\Media\textformatting\TextParagraphProperties.cs (1)
113
get { return 4 * DefaultTextRunProperties.
FontRenderingEmSize
; }
PresentationFramework (2)
MS\Internal\PtsHost\TextParagraph.cs (1)
853
dvr = TextDpi.ToTextDpi(_lineProperties.CalcLineAdvanceForTextParagraph(this, dcp, _lineProperties.DefaultTextRunProperties.
FontRenderingEmSize
));
MS\Internal\Text\TextSpanModifier.cs (1)
191
get { return _runProperties.
FontRenderingEmSize
; }