Fixed breaking long words

This commit is contained in:
MarcinZiabek
2022-05-05 23:52:17 +02:00
parent f3d4151273
commit 4da3ef5dfa
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ namespace QuestPDF.Examples
.ProducePdf()
.PageSize(PageSizes.A4)
.ShowResults()
.MaxPages(20_000)
.MaxPages(10_000)
.EnableCaching(true)
.EnableDebugging(false)
.Render(container =>
@@ -27,7 +27,7 @@ namespace QuestPDF.Examples
.Border(1)
.Table(table =>
{
const int numberOfRows = 250_000;
const int numberOfRows = 100_000;
const int numberOfColumns = 10;
table.ColumnsDefinition(columns =>