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