123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #nullable enable
- namespace Terminal.Gui;
- /// <summary>Defines the style of lines for a <see cref="LineCanvas"/>.</summary>
- public enum LineStyle
- {
- /// <summary>No border is drawn.</summary>
- None,
- /// <summary>The border is drawn using thin line CM.Glyphs.</summary>
- Single,
- /// <summary>The border is drawn using thin line glyphs with dashed (double and triple) straight lines.</summary>
- Dashed,
- /// <summary>The border is drawn using thin line glyphs with short dashed (triple and quadruple) straight lines.</summary>
- Dotted,
- /// <summary>The border is drawn using thin double line CM.Glyphs.</summary>
- Double,
- /// <summary>The border is drawn using heavy line CM.Glyphs.</summary>
- Heavy,
- /// <summary>The border is drawn using heavy line glyphs with dashed (double and triple) straight lines.</summary>
- HeavyDashed,
- /// <summary>The border is drawn using heavy line glyphs with short dashed (triple and quadruple) straight lines.</summary>
- HeavyDotted,
- /// <summary>The border is drawn using thin line glyphs with rounded corners.</summary>
- Rounded,
- /// <summary>The border is drawn using thin line glyphs with rounded corners and dashed (double and triple) straight lines.</summary>
- RoundedDashed,
- /// <summary>
- /// The border is drawn using thin line glyphs with rounded corners and short dashed (triple and quadruple)
- /// straight lines.
- /// </summary>
- RoundedDotted
- // TODO: Support Ruler
- ///// <summary>
- ///// The border is drawn as a diagnostic ruler ("|123456789...").
- ///// </summary>
- //Ruler
- }
|