Aracılığıyla paylaş


GlyphTypeface Oluşturucular

Tanım

GlyphTypeface sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

GlyphTypeface()

GlyphTypeface sınıfının yeni bir örneğini başlatır.

GlyphTypeface(Uri)

Belirtilen yazı tipi dosyası konumunu kullanarak sınıfın GlyphTypeface yeni bir örneğini başlatır.

GlyphTypeface(Uri, StyleSimulations)

Belirtilen yazı tipi dosyası konumunu ve StyleSimulations değerini kullanarak sınıfın GlyphTypeface yeni bir örneğini başlatır.

GlyphTypeface()

GlyphTypeface sınıfının yeni bir örneğini başlatır.

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

Şunlara uygulanır

GlyphTypeface(Uri)

Belirtilen yazı tipi dosyası konumunu kullanarak sınıfın GlyphTypeface yeni bir örneğini başlatır.

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

Parametreler

typefaceSource
Uri

Yazı tipi dosyasının konumunu belirten URI.

Örnekler

Aşağıdaki örnekte, yazı tipi dosyası konumu belirterek sınıfın GlyphTypeface yeni bir örneğinin nasıl oluşturulacağı gösterilmektedir.

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

Açıklamalar

Bu oluşturucu tarafından typefaceSourcebelirtilen OpenType yazı tipi kadranından yeni GlyphTypeface bir nesne oluşturur. Oluşturulur GlyphTypeface nesne stil benzetimi kullanmaz.

Şunlara uygulanır

GlyphTypeface(Uri, StyleSimulations)

Belirtilen yazı tipi dosyası konumunu ve StyleSimulations değerini kullanarak sınıfın GlyphTypeface yeni bir örneğini başlatır.

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)

Parametreler

typefaceSource
Uri

Yazı tipi dosyasının konumunu belirten URI.

styleSimulations
StyleSimulations

Değerlerden StyleSimulations biri.

Öznitelikler

Açıklamalar

Bu oluşturucu, ve styleSimulationstarafından typefaceSource belirtilen OpenType yazı tipi kadranından yeni GlyphTypeface bir nesne oluşturur.

Şunlara uygulanır