3 overrides of FontRenderingEmSize
PresentationCore (1)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
123
public override double
FontRenderingEmSize
PresentationFramework (2)
MS\Internal\Text\TextProperties.cs (1)
41
public override double
FontRenderingEmSize
MS\Internal\Text\TextSpanModifier.cs (1)
190
public override double
FontRenderingEmSize
23 references to FontRenderingEmSize
PresentationCore (21)
MS\Internal\TextFormatting\FormattedTextSymbols.cs (1)
135
current.Properties.
FontRenderingEmSize
,
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
98
_emSize == textRunProperties.
FontRenderingEmSize
MS\Internal\TextFormatting\SimpleTextLine.cs (3)
1345
return TextRun.Properties.Typeface.Baseline(TextRun.Properties.
FontRenderingEmSize
, 1, _pixelsPerDip, _textFormatterImp.TextFormattingMode);
1356
return TextRun.Properties.Typeface.LineSpacing(TextRun.Properties.
FontRenderingEmSize
, 1, _pixelsPerDip, _textFormatterImp.TextFormattingMode);
1367
get { return TextRun.Properties.
FontRenderingEmSize
; }
MS\Internal\TextFormatting\TextFormatterImp.cs (2)
464
ArgumentOutOfRangeException.ThrowIfNegative(paragraphProperties.DefaultTextRunProperties.
FontRenderingEmSize
, "paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize");
465
ArgumentOutOfRangeException.ThrowIfGreaterThan(paragraphProperties.DefaultTextRunProperties.
FontRenderingEmSize
, realMaxFontRenderingEmSize, "paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize");
MS\Internal\TextFormatting\TextMarkerSource.cs (1)
83
defaultRunProperties.
FontRenderingEmSize
,
MS\Internal\TextFormatting\TextProperties.cs (2)
39
_emSize = TextFormatterImp.RealToIdeal(paragraphProperties.DefaultTextRunProperties.
FontRenderingEmSize
);
388
return (int)Math.Round(properties.
FontRenderingEmSize
* 0.75 * _textRunLength * realToIdeal);
MS\Internal\TextFormatting\TextRunCacheImp.cs (2)
118
if (properties.
FontRenderingEmSize
<= 0)
123
if (properties.
FontRenderingEmSize
> realMaxFontRenderingEmSize)
MS\Internal\TextFormatting\TextShapeableCharacters.cs (2)
482
return _properties.Typeface.LineSpacing(_properties.
FontRenderingEmSize
, 1, _properties.PixelsPerDip, _textFormattingMode);
494
return _properties.Typeface.Baseline(_properties.
FontRenderingEmSize
, 1, _properties.PixelsPerDip, _textFormattingMode);
MS\Internal\TextFormatting\TextStore.cs (2)
1564
(int)Math.Round(realToIdeal * runInfo.TextRun.Properties.
FontRenderingEmSize
),
1719
(int)Math.Round(realToIdeal * runInfo.TextRun.Properties.
FontRenderingEmSize
),
System\Windows\Media\textformatting\TextCharacters.cs (4)
123
ArgumentOutOfRangeException.ThrowIfNegativeOrZero(textRunProperties.
FontRenderingEmSize
, "textRunProperties.FontRenderingEmSize");
218
textRunProperties.
FontRenderingEmSize
,
236
textRunProperties.
FontRenderingEmSize
,
289
textRunProperties.
FontRenderingEmSize
* emScale,
System\Windows\Media\textformatting\TextParagraphProperties.cs (1)
114
get { return 4 * DefaultTextRunProperties.
FontRenderingEmSize
; }
PresentationFramework (2)
MS\Internal\PtsHost\TextParagraph.cs (1)
870
dvr = TextDpi.ToTextDpi(_lineProperties.CalcLineAdvanceForTextParagraph(this, dcp, _lineProperties.DefaultTextRunProperties.
FontRenderingEmSize
));
MS\Internal\Text\TextSpanModifier.cs (1)
192
get { return _runProperties.
FontRenderingEmSize
; }