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


CTFontManager.UnregisterGraphicsFont(CGFont, NSError) Метод

Определение

Отменяет регистрацию шрифта CoreGraphics в системе шрифтов CoreText.

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

Параметры

font
CGFont

Шрифт CoreGraphics для отмены регистрации в системе шрифтов CoreText.

error
NSError

При возврате ошибки, если она есть.

Возвращаемое значение

Значение true для успешного выполнения, значение false для ошибки.

Комментарии

// 
// 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);
}

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