次の方法で共有


CTFontDescriptorAttributes コンストラクター

定義

オーバーロード

CTFontDescriptorAttributes()

既定のコンストラクターです。

CTFontDescriptorAttributes(NSDictionary)

厳密に型指定された CTFontDescriptorAttributes を、弱く型指定された NSDictionary から作成します。

CTFontDescriptorAttributes()

既定のコンストラクターです。

public CTFontDescriptorAttributes ();

注釈

通常、C# 初期化子構文を使用してオブジェクトを初期化するために使用されます。

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

var fontDescriptor = new CTFontDescriptor (attributes);

適用対象

CTFontDescriptorAttributes(NSDictionary)

厳密に型指定された CTFontDescriptorAttributes を、弱く型指定された NSDictionary から作成します。

public CTFontDescriptorAttributes (Foundation.NSDictionary dictionary);
new CoreText.CTFontDescriptorAttributes : Foundation.NSDictionary -> CoreText.CTFontDescriptorAttributes

パラメーター

dictionary
NSDictionary

CTFontDescriptorAttributes キーと値を含む NSDictionary。

適用対象