45 lines
959 B
C#
45 lines
959 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"
|
|||
|
|
|
|||
|
|
namespace TheArtOfDev.HtmlRenderer.Adapters.Entities
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Specifies the style of dashed lines drawn with a <see cref="RPen"/> object.
|
|||
|
|
/// </summary>
|
|||
|
|
public enum RDashStyle
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
Solid,
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
Dash,
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
Dot,
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
DashDot,
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
DashDotDot,
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20>Զ<EFBFBD><D4B6><EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
Custom,
|
|||
|
|
}
|
|||
|
|
}
|