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