15 references to FontStretch
PresentationCore (15)
MS\Internal\FontCache\FamilyCollection.cs (1)
411
fontStretch = new
FontStretch
((int)font.Stretch);
MS\Internal\FontFace\PhysicalFontFamily.cs (1)
216
_style = new MatchingStyle(new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new
FontStretch
((int)face.Stretch));
MS\Internal\FontFace\TypefaceCollection.cs (1)
156
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)
44
return new
FontStretch
(stretchValue);
System\Windows\FontStretches.cs (10)
22
public static FontStretch UltraCondensed { get { return new
FontStretch
(1); } }
27
public static FontStretch ExtraCondensed { get { return new
FontStretch
(2); } }
32
public static FontStretch Condensed { get { return new
FontStretch
(3); } }
37
public static FontStretch SemiCondensed { get { return new
FontStretch
(4); } }
42
public static FontStretch Normal { get { return new
FontStretch
(5); } }
47
public static FontStretch Medium { get { return new
FontStretch
(5); } }
52
public static FontStretch SemiExpanded { get { return new
FontStretch
(6); } }
57
public static FontStretch Expanded { get { return new
FontStretch
(7); } }
62
public static FontStretch ExtraExpanded { get { return new
FontStretch
(8); } }
67
public static FontStretch UltraExpanded { get { return new
FontStretch
(9); } }
System\Windows\Media\GlyphTypeface.cs (1)
591
return new
FontStretch
((int)_font.Stretch);