메소드 | 설명 | |
---|---|---|
AddFileFont ( string filename ) : void |
Adds a private memory font from a file
|
|
AddFont ( Stream stream ) : void |
Adds a private memory font from a stream The stream will be closed automatically after the font is loaded |
|
AddResourceFont ( byte bytes ) : void |
Adds a font from an array of bytes
|
|
AddResourceFont ( string resourceName ) : void |
Adds a private memory font from an embedded resource
|
|
GetFont ( string familyName, float size, FontStyle style ) : |
Creates and returns a font, first checking memorized fonts.
|
|
GetMemoryFont ( string familyName, float size, FontStyle style ) : |
Finds and creates a font from a font family previously loaded into memory
|
|
IsInstalled ( string fontName ) : bool |
Checks if a font is installed on the machine and returns the result
|
|
LoadUserFonts ( ) : void |
Loads all TrueType fonts found in the application's "Fonts" folder into memory. This method also loads resource fonts embedded into the application. |
public static AddFileFont ( string filename ) : void | ||
filename | string | The path of the file |
리턴 | void |
public static AddFont ( Stream stream ) : void | ||
stream | Stream | The stream to load the font from |
리턴 | void |
public static AddResourceFont ( byte bytes ) : void | ||
bytes | byte | Array of bytes to read |
리턴 | void |
public static AddResourceFont ( string resourceName ) : void | ||
resourceName | string | The full names, including namespaces, of the resource file |
리턴 | void |
public static GetFont ( string familyName, float size, FontStyle style ) : |
||
familyName | string | Name of the font family |
size | float | Size of the font |
style | FontStyle | Style to apply to the font |
리턴 |
public static GetMemoryFont ( string familyName, float size, FontStyle style ) : |
||
familyName | string | Name of the font family |
size | float | Size of the font |
style | FontStyle | Style to apply to the font |
리턴 |
public static IsInstalled ( string fontName ) : bool | ||
fontName | string | The names of the font to check for |
리턴 | bool |