ConsoleTables
ConsoleTables copied to clipboard
Print out a nicely formatted table in a console application C#
Special Characters like `äöüßé` break the column alignment. Left output is expected but instead right output is produced: Expected Output would be ``` -------------- | Name | Age | --------------...
Hello, I'm seeking guidance on how to enable line breaks in the contents of a cell. Could you please advise me on how to achieve this? Thank you. ![Screenshot 2024-04-10...
Setting the format inside the constructor of `table.Write` to `Format.Alternative`, causes a null reference exception to be thrown. Happening somewhere in `ToStringAlternative()` method ```csharp System.NullReferenceException: Object reference not set to...
Doco: Can you nominate formatting for particular columns(properties)? Can I get a coding example please? For example in a column/property was say an "balance" (e.g. decimal) and I wanted to...
Try to pin down and maybe fix the Problem with Special Characters alignment
`foreach(Entry entry in inFile.Entries) if (!entry.IsFolder) table.AddRow(entry.FileName, entry.Size, entry.PackedSize,entry.Ratio,entry.CRC.ToString("X8")); ` Can I right-align Column 1 and Column 2 to right while adding data this way? It's not clear if it...
given: ```cs new Creator{Id = 1, FullName = @"Douglas Adams", Born = new DateOnly(1952,4,11), Died = new DateOnly(2001,5,11)}; new Work{Id = 41, CreatorId = 1, Title = @"Young Zaphod Plays...
Hello Just wondering if it is possible to use a newline within a row/column to create a multiline effect. Currently when I use \n it creates a whole new line...
- I'd love to see the possibility to add visual dividers as "row data". - Perhaps a method AddDividerRow()
It would be handy to enable the wrapping of the contents in a fixed-width cell. ``` +---------------------+--------------------------------------------------+ | Number | Message | +---------------------+--------------------------------------------------+ | 4 | Some text wrapping itself...