Compartir a través de


CTFontManager.UnregisterGraphicsFont(CGFont, NSError) Método

Definición

Anula el registro de una fuente CoreGraphics del sistema de fuentes CoreText.

public static bool UnregisterGraphicsFont (CoreGraphics.CGFont font, out Foundation.NSError error);
static member UnregisterGraphicsFont : CoreGraphics.CGFont *  -> bool

Parámetros

font
CGFont

Fuente CoreGraphics que se va a anular el registro con el sistema de fuentes CoreText.

error
NSError

Al devolver el error, si existe.

Devoluciones

True si se ejecuta correctamente, false al error.

Comentarios

// 
// Load font into byte array from a file.
//
byte [] myBuffer = GetEmbeddedResource ("myResource");
CGFont font = CGFont.CreateFromProvider (new CGDataProvider (myBuffer, 0, myBuffer.Count));
if (CTFontManager.RegisterGraphicsFont (font, out error)){
	//
	// access font
	//

	// Release font after we use it.
	CTFontManager.UnregisterGraphicsFont (font, out error);
}

Se aplica a