Add ShowRowSeparators in Table Widget docs (#1807)

This commit is contained in:
Bartosz Ogiński 2025-04-14 18:34:09 +02:00 committed by GitHub
parent 57dd8ee410
commit d836ad1805
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -137,4 +137,11 @@ table.Columns[0].NoWrap();
```csharp
// Set the column width
table.Columns[0].Width(15);
```
### Show row separators
```csharp
// Shows separator between each row
table.ShowRowSeparators();
```