44 lines
901 B
C#
44 lines
901 B
C#
|
|
// "Therefore those skilled at the unorthodox
|
||
|
|
// are infinite as heaven and earth,
|
||
|
|
// inexhaustible as the great rivers.
|
||
|
|
// When they come to an end,
|
||
|
|
// they begin again,
|
||
|
|
// like the days and months;
|
||
|
|
// they die and are reborn,
|
||
|
|
// like the four seasons."
|
||
|
|
//
|
||
|
|
// - Sun Tsu,
|
||
|
|
// "The Art of War"
|
||
|
|
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace TheArtOfDev.HtmlRenderer.Adapters.Entities
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Specifies style information applied to text.
|
||
|
|
/// </summary>
|
||
|
|
[Flags]
|
||
|
|
public enum RFontStyle
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
Regular = 0,
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
Bold = 1,
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
Italic = 2,
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
Underline = 4,
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
Strikeout = 8,
|
||
|
|
}
|
||
|
|
}
|