mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-19 15:16:20 +00:00
implement enum for types, implement OpenDialog from Dialog-API
This commit is contained in:
35
ElectronNET.API/Entities/DefaultFontFamily.cs
Normal file
35
ElectronNET.API/Entities/DefaultFontFamily.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
public class DefaultFontFamily
|
||||
{
|
||||
/// <summary>
|
||||
/// Defaults to Times New Roman.
|
||||
/// </summary>
|
||||
public string Standard { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Times New Roman.
|
||||
/// </summary>
|
||||
public string Serif { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Arial.
|
||||
/// </summary>
|
||||
public string SansSerif { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Courier New.
|
||||
/// </summary>
|
||||
public string Monospace { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Script.
|
||||
/// </summary>
|
||||
public string Cursive { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Impact.
|
||||
/// </summary>
|
||||
public string Fantasy { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user