CTFontDescriptor.WithAttributes Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
WithAttributes(NSDictionary) | |
WithAttributes(CTFontDescriptorAttributes) |
WithAttributes(NSDictionary)
public CoreText.CTFontDescriptor WithAttributes (Foundation.NSDictionary attributes);
member this.WithAttributes : Foundation.NSDictionary -> CoreText.CTFontDescriptor
Parametri
- attributes
- NSDictionary
Restituisce
Si applica a
WithAttributes(CTFontDescriptorAttributes)
public CoreText.CTFontDescriptor WithAttributes (CoreText.CTFontDescriptorAttributes attributes);
member this.WithAttributes : CoreText.CTFontDescriptorAttributes -> CoreText.CTFontDescriptor
Parametri
- attributes
- CTFontDescriptorAttributes
Restituisce
Commenti
var attributes = new CTFontDescriptorAttributes () {
FamilyName = "Times New Roman"
};
var newFontDescriptor = myDescriptor.WithAttributes (attributes);