Font.CreateDynamicFontFromOSFont

매뉴얼로 전환
public static Font CreateDynamicFontFromOSFont (string fontname, int size);
public static Font CreateDynamicFontFromOSFont (string[] fontnames, int size);

파라미터

fontnameThe name of the OS font to use for this font object.
sizeThe default character size of the generated font.
fontnamesAm array of names of OS fonts to use for this font object. When rendering characters using this font object, the first font which is installed on the machine, which contains the requested character will be used.

반환

Font The generate Font object.

설명

Creates a Font object which lets you render a font installed on the user machine.

CreateDynamicFontFromOSFont creates a font object which references fonts from the OS. This lets you render text using any font installed on the user's machine. See GetOSInstalledFontNames for getting names of installed fonts at runtime, which can be used with this function.