15 references to FontStretch
PresentationCore (15)
MS\Internal\FontCache\FamilyCollection.cs (1)
407
fontStretch = new
FontStretch
((int)font.Stretch);
MS\Internal\FontFace\PhysicalFontFamily.cs (1)
215
_style = new MatchingStyle(new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new
FontStretch
((int)face.Stretch));
MS\Internal\FontFace\TypefaceCollection.cs (1)
155
return new Typeface(_typefaceCollection._fontFamily, new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new
FontStretch
((int)face.Stretch));
System\Windows\FontStretch.cs (1)
43
return new
FontStretch
(stretchValue);
System\Windows\FontStretches.cs (10)
21
public static FontStretch UltraCondensed { get { return new
FontStretch
(1); } }
26
public static FontStretch ExtraCondensed { get { return new
FontStretch
(2); } }
31
public static FontStretch Condensed { get { return new
FontStretch
(3); } }
36
public static FontStretch SemiCondensed { get { return new
FontStretch
(4); } }
41
public static FontStretch Normal { get { return new
FontStretch
(5); } }
46
public static FontStretch Medium { get { return new
FontStretch
(5); } }
51
public static FontStretch SemiExpanded { get { return new
FontStretch
(6); } }
56
public static FontStretch Expanded { get { return new
FontStretch
(7); } }
61
public static FontStretch ExtraExpanded { get { return new
FontStretch
(8); } }
66
public static FontStretch UltraExpanded { get { return new
FontStretch
(9); } }
System\Windows\Media\GlyphTypeface.cs (1)
590
return new
FontStretch
((int)_font.Stretch);