GlyphTypeface 构造函数

定义

初始化 GlyphTypeface 类的新实例。

重载

GlyphTypeface()

初始化 GlyphTypeface 类的新实例。

GlyphTypeface(Uri)

使用指定的字体文件位置初始化 GlyphTypeface 类的一个新实例。

GlyphTypeface(Uri, StyleSimulations)

使用指定的字体文件位置和 GlyphTypeface 值初始化 StyleSimulations 类的一个新实例。

GlyphTypeface()

初始化 GlyphTypeface 类的新实例。

public:
 GlyphTypeface();
public GlyphTypeface ();
Public Sub New ()

适用于

GlyphTypeface(Uri)

使用指定的字体文件位置初始化 GlyphTypeface 类的一个新实例。

public:
 GlyphTypeface(Uri ^ typefaceSource);
public GlyphTypeface (Uri typefaceSource);
new System.Windows.Media.GlyphTypeface : Uri -> System.Windows.Media.GlyphTypeface
Public Sub New (typefaceSource As Uri)

参数

typefaceSource
Uri

用于指定字体文件位置的 URI。

示例

以下示例演示如何通过指定字体文件位置创建类的新实例 GlyphTypeface

// Create a glyph typeface by referencing the Kootenay OpenType font.
GlyphTypeface glyphTypeface = new GlyphTypeface(new Uri("file:///C:\\WINDOWS\\Fonts\\Kooten.ttf"));
' Create a glyph typeface by referencing the Kootenay OpenType font.
Dim glyphTypeface As New GlyphTypeface(New Uri("file:///C:\WINDOWS\Fonts\Kooten.ttf"))

注解

此构造函数从 OpenType 字体人脸创建typefaceSource一个新GlyphTypeface对象。 构造 GlyphTypeface 的对象不使用样式模拟。

适用于

GlyphTypeface(Uri, StyleSimulations)

使用指定的字体文件位置和 GlyphTypeface 值初始化 StyleSimulations 类的一个新实例。

public:
 GlyphTypeface(Uri ^ typefaceSource, System::Windows::Media::StyleSimulations styleSimulations);
[System.Security.SecurityCritical]
public GlyphTypeface (Uri typefaceSource, System.Windows.Media.StyleSimulations styleSimulations);
public GlyphTypeface (Uri typefaceSource, System.Windows.Media.StyleSimulations styleSimulations);
[<System.Security.SecurityCritical>]
new System.Windows.Media.GlyphTypeface : Uri * System.Windows.Media.StyleSimulations -> System.Windows.Media.GlyphTypeface
new System.Windows.Media.GlyphTypeface : Uri * System.Windows.Media.StyleSimulations -> System.Windows.Media.GlyphTypeface
Public Sub New (typefaceSource As Uri, styleSimulations As StyleSimulations)

参数

typefaceSource
Uri

用于指定字体文件位置的 URI。

styleSimulations
StyleSimulations

StyleSimulations 值之一。

属性

注解

此构造函数从由和styleSimulations指定的 typefaceSource OpenType 字体人脸创建一个新GlyphTypeface对象。

适用于