Update border documentation

This commit is contained in:
Patrik Svensson
2020-09-09 14:27:40 +02:00
parent b46d0fa4f6
commit 1601ef24b3
5 changed files with 27 additions and 6 deletions

View File

@@ -46,12 +46,14 @@ This will render the following output:
## Borders
For a list of borders, see the [Borders](xref:borders) appendix section.
```csharp
// Sets the border kind
table.SetBorderKind(BorderKind.None);
table.SetBorderKind(BorderKind.Ascii);
table.SetBorderKind(BorderKind.Square);
table.SetBorderKind(BorderKind.Rounded);
// Sets the border
table.SetBorder(Border.None);
table.SetBorder(Border.Ascii);
table.SetBorder(Border.Square);
table.SetBorder(Border.Rounded);
```
## Expand / Collapse