You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace ZeroLevel.Services.PlainTextTables
|
|
|
|
|
{
|
|
|
|
|
public enum TextTableStyle
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// No borders
|
|
|
|
|
/// </summary>
|
|
|
|
|
NoBorders,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Borders of characters! + -
|
|
|
|
|
/// </summary>
|
|
|
|
|
Simple,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Borders of characters +|, only for the first and last row and columns
|
|
|
|
|
/// </summary>
|
|
|
|
|
Columns,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Full borders
|
|
|
|
|
/// </summary>
|
|
|
|
|
Borders,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Line to separate column names
|
|
|
|
|
/// </summary>
|
|
|
|
|
HeaderLine,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Lines for separating column names and first column (row names)
|
|
|
|
|
/// </summary>
|
|
|
|
|
HeaderAndFirstColumn,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Full double borders
|
|
|
|
|
/// </summary>
|
|
|
|
|
DoubleBorders,
|
|
|
|
|
|
|
|
|
|
DoubleHeaderLine,
|
|
|
|
|
DoubleHeaderAndFirstColumn
|
|
|
|
|
}
|
|
|
|
|
}
|