15 references to FontStretch
PresentationCore (15)
MS\Internal\FontCache\FamilyCollection.cs (1)
421
fontStretch = new
FontStretch
((int)font.Stretch);
MS\Internal\FontFace\PhysicalFontFamily.cs (1)
225
_style = new MatchingStyle(new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new
FontStretch
((int)face.Stretch));
MS\Internal\FontFace\TypefaceCollection.cs (1)
170
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)
48
return new
FontStretch
(stretchValue);
System\Windows\FontStretches.cs (10)
23
public static FontStretch UltraCondensed { get { return new
FontStretch
(1); } }
28
public static FontStretch ExtraCondensed { get { return new
FontStretch
(2); } }
33
public static FontStretch Condensed { get { return new
FontStretch
(3); } }
38
public static FontStretch SemiCondensed { get { return new
FontStretch
(4); } }
43
public static FontStretch Normal { get { return new
FontStretch
(5); } }
48
public static FontStretch Medium { get { return new
FontStretch
(5); } }
53
public static FontStretch SemiExpanded { get { return new
FontStretch
(6); } }
58
public static FontStretch Expanded { get { return new
FontStretch
(7); } }
63
public static FontStretch ExtraExpanded { get { return new
FontStretch
(8); } }
68
public static FontStretch UltraExpanded { get { return new
FontStretch
(9); } }
System\Windows\Media\GlyphTypeface.cs (1)
600
return new
FontStretch
((int)_font.Stretch);