While writing a small C# application for myself I realized that it would be neat if I could easily draw tables in textmode. You know, like this:
+-----------------+-----------------+
| Header 1 | Header 2 |
+--------+--------+--------+--------+
| Data 1 | Data 2 | Data 3 | Data 4 |
| Data 1 | Data 2 | Data 3 | Data 4 |
| Data 1 | Data 2 | Data 3 | Data 4 |
+--------+--------+--------+--------+
A quick google search revealed nothing. Is there anything like this ready-made, or should I roll out my own?
Added: The ideal version would support:
- Row/column spans;
- Different border widths and styles;
- Horizontal and vertical text alignment
But I'll settle for less as well. :)