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