2 implementations of Baseline
PresentationCore (2)
MS\Internal\FontFace\PhysicalFontFamily.cs (1)
389double IFontFamily.Baseline(double emSize, double toReal, double pixelsPerDip, TextFormattingMode textFormattingMode)
MS\Internal\Shaping\CompositeFontFamily.cs (1)
106public double Baseline(double emSize, double toReal, double pixelsPerDip, TextFormattingMode textFormattingMode)
3 references to Baseline
PresentationCore (3)
MS\Internal\FontFace\PhysicalFontFamily.cs (1)
406return ((IFontFamily)this).Baseline(1, 1, 1, TextFormattingMode.Ideal);
MS\Internal\Shaping\CompositeFontFamily.cs (1)
124return GetFirstFontFamily().Baseline(emSize, toReal, pixelsPerDip, textFormattingMode);
System\Windows\Media\Typeface.cs (1)
276return CachedTypeface.FirstFontFamily.Baseline(emSize, toReal, pixelsPerDip, textFormattingMode);