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

@ -0,0 +1,19 @@
Title: Borders
Order: 2
---
There is different built-in borders you can use for tables and panels.
# Built-in borders
<img src="../assets/images/borders.png" style="max-width: 100%;">
# Usage
To create a table and set it's border to `SimpleHeavy` as seen in the
image above:
```csharp
var table = new Table();
table.Border = Border.SimpleHeavy;
```