2 implementations of LineSpacing
PresentationCore (2)
MS\Internal\FontFace\PhysicalFontFamily.cs (1)
432double IFontFamily.LineSpacing(double emSize, double toReal, double pixelsPerDip, TextFormattingMode textFormattingMode)
MS\Internal\Shaping\CompositeFontFamily.cs (1)
145public double LineSpacing(double emSize, double toReal, double pixelsPerDip, TextFormattingMode textFormattingMode)
4 references to LineSpacing
PresentationCore (4)
MS\Internal\FontFace\PhysicalFontFamily.cs (1)
424return ((IFontFamily)this).LineSpacing(1, 1, 1, TextFormattingMode.Ideal);
MS\Internal\Shaping\CompositeFontFamily.cs (1)
163return GetFirstFontFamily().LineSpacing(emSize, toReal, pixelsPerDip, textFormattingMode);
System\Windows\Media\FontFamily.cs (1)
258return FirstFontFamily.LineSpacing(emSize, 1, pixelsPerDip, TextFormattingMode.Display);
System\Windows\Media\Typeface.cs (1)
290return CachedTypeface.FirstFontFamily.LineSpacing(emSize, toReal, pixelsPerDip, textFormattingMode);