15 references to FontStretch
PresentationCore (15)
Core\CSharp\MS\Internal\FontCache\FamilyCollection.cs (1)
573fontStretch = 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)
187return 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)
51return new FontStretch(stretchValue);
Core\CSharp\System\Windows\FontStretches.cs (10)
25public static FontStretch UltraCondensed { get { return new FontStretch(1); } } 30public static FontStretch ExtraCondensed { get { return new FontStretch(2); } } 35public static FontStretch Condensed { get { return new FontStretch(3); } } 40public static FontStretch SemiCondensed { get { return new FontStretch(4); } } 45public static FontStretch Normal { get { return new FontStretch(5); } } 50public static FontStretch Medium { get { return new FontStretch(5); } } 55public static FontStretch SemiExpanded { get { return new FontStretch(6); } } 60public static FontStretch Expanded { get { return new FontStretch(7); } } 65public static FontStretch ExtraExpanded { get { return new FontStretch(8); } } 70public static FontStretch UltraExpanded { get { return new FontStretch(9); } }
Core\CSharp\System\Windows\Media\GlyphTypeface.cs (1)
797return new FontStretch((int)_font.Stretch);