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