次の方法で共有


CTFontManager.UnregisterGraphicsFont(CGFont, NSError) メソッド

定義

CoreText フォント システムから CoreGraphics フォントの登録を解除します。

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

パラメーター

font
CGFont

CoreText フォント システムで登録を解除する CoreGraphics フォント。

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

適用対象