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