CTFontManager.UnregisterGraphicsFont(CGFont, NSError) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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);
}