次の方法で共有


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 の場合、フォントはサイズが指定されていないかのように扱われます。

適用対象