GlyphTypeface 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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 글꼴 면에서 새 GlyphTypeface 개체를 typefaceSource
만듭니다. 생성된 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 값 중 하나입니다.
- 특성
설명
이 생성자는 지정 typefaceSource
한 OpenType 글꼴 면에서 새 GlyphTypeface 개체를 styleSimulations
만듭니다.