다음을 통해 공유


CTFontDescriptor 생성자

정의

오버로드

CTFontDescriptor(CTFontDescriptorAttributes)

특성 집합에서 글꼴 설명자를 만듭니다.

CTFontDescriptor(String, nfloat)

PostScript 이름(및 선택적 크기)에서 글꼴 설명자를 만듭니다.

CTFontDescriptor(CTFontDescriptorAttributes)

특성 집합에서 글꼴 설명자를 만듭니다.

public CTFontDescriptor (CoreText.CTFontDescriptorAttributes attributes);
new CoreText.CTFontDescriptor : CoreText.CTFontDescriptorAttributes -> CoreText.CTFontDescriptor

매개 변수

attributes
CTFontDescriptorAttributes

글꼴 설명자에 사용할 글꼴 특성입니다.

설명

var attributes = new CTFontDescriptorAttributes () {
	FamilyName = "Times New Roman"
};

var fontDescriptor = new CTFontDescriptor (attributes);

적용 대상

CTFontDescriptor(String, nfloat)

PostScript 이름(및 선택적 크기)에서 글꼴 설명자를 만듭니다.

public CTFontDescriptor (string name, nfloat size);
new CoreText.CTFontDescriptor : string * nfloat -> CoreText.CTFontDescriptor

매개 변수

name
String

만들 글꼴의 PostScript 이름입니다.

size
nfloat

원하는 크기입니다. 크기가 0이면 글꼴이 크기를 지정하지 않은 것처럼 처리됩니다.

적용 대상