Sdílet prostřednictvím


GlyphTypeface Konstruktory

Definice

Inicializuje novou instanci GlyphTypeface třídy.

Přetížení

GlyphTypeface()

Inicializuje novou instanci GlyphTypeface třídy.

GlyphTypeface(Uri)

Inicializuje novou instanci GlyphTypeface třídy pomocí zadaného umístění souboru písma.

GlyphTypeface(Uri, StyleSimulations)

Inicializuje novou instanci GlyphTypeface třídy pomocí zadaného umístění a StyleSimulations hodnoty souboru písma.

GlyphTypeface()

Inicializuje novou instanci GlyphTypeface třídy.

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

Platí pro

GlyphTypeface(Uri)

Inicializuje novou instanci GlyphTypeface třídy pomocí zadaného umístění souboru písma.

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

Parametry

typefaceSource
Uri

Identifikátor URI, který určuje umístění souboru písma.

Příklady

Následující příklad ukazuje, jak vytvořit novou instanci GlyphTypeface třídy zadáním umístění souboru písma.

// 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"))

Poznámky

Tento konstruktor vytvoří nový GlyphTypeface objekt z řezu písma OpenType určeného uživatelem typefaceSource. Vytvořený GlyphTypeface objekt nepoužívá simulace stylu.

Platí pro

GlyphTypeface(Uri, StyleSimulations)

Inicializuje novou instanci GlyphTypeface třídy pomocí zadaného umístění a StyleSimulations hodnoty souboru písma.

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)

Parametry

typefaceSource
Uri

Identifikátor URI, který určuje umístění souboru písma.

styleSimulations
StyleSimulations

Jedna z StyleSimulations hodnot.

Atributy

Poznámky

Tento konstruktor vytvoří nový GlyphTypeface objekt z řezu písma OpenType určeného uživatelem typefaceSource a styleSimulations.

Platí pro