15 references to FontStretch
PresentationCore (15)
Core\CSharp\MS\Internal\FontCache\FamilyCollection.cs (1)
573
fontStretch = new
FontStretch
((int)font.Stretch);
Core\CSharp\MS\Internal\FontFace\PhysicalFontFamily.cs (1)
254
_style = new MatchingStyle(new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new
FontStretch
((int)face.Stretch));
Core\CSharp\MS\Internal\FontFace\TypefaceCollection.cs (1)
187
return new Typeface(_typefaceCollection._fontFamily, new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new
FontStretch
((int)face.Stretch));
Core\CSharp\System\Windows\FontStretch.cs (1)
51
return new
FontStretch
(stretchValue);
Core\CSharp\System\Windows\FontStretches.cs (10)
25
public static FontStretch UltraCondensed { get { return new
FontStretch
(1); } }
30
public static FontStretch ExtraCondensed { get { return new
FontStretch
(2); } }
35
public static FontStretch Condensed { get { return new
FontStretch
(3); } }
40
public static FontStretch SemiCondensed { get { return new
FontStretch
(4); } }
45
public static FontStretch Normal { get { return new
FontStretch
(5); } }
50
public static FontStretch Medium { get { return new
FontStretch
(5); } }
55
public static FontStretch SemiExpanded { get { return new
FontStretch
(6); } }
60
public static FontStretch Expanded { get { return new
FontStretch
(7); } }
65
public static FontStretch ExtraExpanded { get { return new
FontStretch
(8); } }
70
public static FontStretch UltraExpanded { get { return new
FontStretch
(9); } }
Core\CSharp\System\Windows\Media\GlyphTypeface.cs (1)
797
return new
FontStretch
((int)_font.Stretch);