mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-22 19:58:48 +00:00
Add proprietary FontStyle enum
Removes dependency on Windows-only API from System.Drawing
This commit is contained in:
parent
f1abc4374a
commit
1bf050eca0
22
VpSharp/src/FontStyle.cs
Normal file
22
VpSharp/src/FontStyle.cs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
namespace VpSharp;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An enumeration of font styles.
|
||||||
|
/// </summary>
|
||||||
|
public enum FontStyle
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Regular font.
|
||||||
|
/// </summary>
|
||||||
|
Regular = 0,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Bold font.
|
||||||
|
/// </summary>
|
||||||
|
Bold = 1,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Italic font.
|
||||||
|
/// </summary>
|
||||||
|
Italic = 2
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user