Поделиться через


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

NSDictionary, содержащий ключи и значения CTFontDescriptorAttributes.

Применяется к