11 references to DefaultIdealToReal
PresentationCore (11)
MS\Internal\TextFormatting\LineServices.cs (1)
1294
public const double RealInfiniteWidth = IdealInfiniteWidth *
DefaultIdealToReal
;
MS\Internal\TextFormatting\LineServicesCallbacks.cs (2)
437
lstTextMetrics.dvAscent = (int)Math.Round(typeface.Baseline(store.Pap.EmSize, Constants.
DefaultIdealToReal
, store.Settings.TextSource.PixelsPerDip, fullText.TextFormattingMode));
438
lstTextMetrics.dvMultiLineHeight = (int)Math.Round(typeface.LineSpacing(store.Pap.EmSize, Constants.
DefaultIdealToReal
, store.Settings.TextSource.PixelsPerDip, fullText.TextFormattingMode));
MS\Internal\TextFormatting\SimpleTextLine.cs (2)
326
_height = formatter.IdealToReal((int)Math.Round(pap.DefaultTypeface.LineSpacing(pap.EmSize, Constants.
DefaultIdealToReal
, PixelsPerDip, _settings.TextFormattingMode)), PixelsPerDip);
327
_baselineOffset = formatter.IdealToReal((int)Math.Round(pap.DefaultTypeface.Baseline(pap.EmSize, Constants.
DefaultIdealToReal
, PixelsPerDip, _settings.TextFormattingMode)), PixelsPerDip);
MS\Internal\TextFormatting\TextFormatterImp.cs (2)
675
return i * Constants.
DefaultIdealToReal
;
692
value = Math.Max(value, Constants.
DefaultIdealToReal
);
MS\Internal\TextFormatting\TextMetrics.cs (4)
192
* pap.DefaultTypeface.Baseline(pap.EmSize, Constants.
DefaultIdealToReal
, _pixelsPerDip, fullText.TextFormattingMode)
193
/ pap.DefaultTypeface.LineSpacing(pap.EmSize, Constants.
DefaultIdealToReal
, _pixelsPerDip, fullText.TextFormattingMode)
201
_textAscent = (int)Math.Round(pap.DefaultTypeface.Baseline(pap.EmSize, Constants.
DefaultIdealToReal
, _pixelsPerDip, fullText.TextFormattingMode));
202
_textHeight = (int)Math.Round(pap.DefaultTypeface.LineSpacing(pap.EmSize, Constants.
DefaultIdealToReal
, _pixelsPerDip, fullText.TextFormattingMode));