Interface IManagedFontStorage
Assembly: Aurigma.DesignAtoms.dll
Syntax
public interface IManagedFontStorage : IFontStorage
Methods
AddFontFile(String, String, Stream, Boolean)
Declaration
void AddFontFile(string folderPath, string fileName, Stream stream, bool overwrite)
Parameters
| Type |
Name |
Description |
| System.String |
folderPath |
|
| System.String |
fileName |
|
| System.IO.Stream |
stream |
|
| System.Boolean |
overwrite |
|
GetFontFilesByPathAsync(String, Boolean)
Declaration
Task<IEnumerable<string>> GetFontFilesByPathAsync(string folderPath, bool includeSubfolders)
Parameters
| Type |
Name |
Description |
| System.String |
folderPath |
|
| System.Boolean |
includeSubfolders |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<System.String>> |
|
GetFontFoldersByPath(String, Boolean)
Declaration
IEnumerable<string> GetFontFoldersByPath(string folderPath, bool includeSubfolders)
Parameters
| Type |
Name |
Description |
| System.String |
folderPath |
|
| System.Boolean |
includeSubfolders |
|
Returns
| Type |
Description |
| System.Collections.Generic.IEnumerable<System.String> |
|
IsFontDirectoryExists(String)
Declaration
bool IsFontDirectoryExists(string folderPath)
Parameters
| Type |
Name |
Description |
| System.String |
folderPath |
|
Returns
| Type |
Description |
| System.Boolean |
|
IsFontFileExists(String)
Declaration
bool IsFontFileExists(string filePath)
Parameters
| Type |
Name |
Description |
| System.String |
filePath |
|
Returns
| Type |
Description |
| System.Boolean |
|
RemoveFontDirectory(String)
Declaration
bool RemoveFontDirectory(string directoryPath)
Parameters
| Type |
Name |
Description |
| System.String |
directoryPath |
|
Returns
| Type |
Description |
| System.Boolean |
|
RemoveFontFile(String)
Declaration
bool RemoveFontFile(string filePath)
Parameters
| Type |
Name |
Description |
| System.String |
filePath |
|
Returns
| Type |
Description |
| System.Boolean |
|