CTFontDescriptor コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
CTFontDescriptor(CTFontDescriptorAttributes) |
一連の属性からフォント記述子を作成します。 |
CTFontDescriptor(String, nfloat) |
PostScript 名 (およびオプションのサイズ) からフォント記述子を作成します。 |
CTFontDescriptor(CTFontDescriptorAttributes)
一連の属性からフォント記述子を作成します。
public CTFontDescriptor (CoreText.CTFontDescriptorAttributes attributes);
new CoreText.CTFontDescriptor : CoreText.CTFontDescriptorAttributes -> CoreText.CTFontDescriptor
パラメーター
- attributes
- CTFontDescriptorAttributes
フォント記述子に使用するフォント属性。
注釈
var attributes = new CTFontDescriptorAttributes () {
FamilyName = "Times New Roman"
};
var fontDescriptor = new CTFontDescriptor (attributes);