Implemented text shaping prototype

This commit is contained in:
MarcinZiabek
2022-03-01 23:22:14 +01:00
parent 7d825d123b
commit 662a55e21c
21 changed files with 286 additions and 246 deletions
+2 -2
View File
@@ -236,7 +236,7 @@ namespace QuestPDF.Examples
.Padding(10)
.Text(text =>
{
text.DefaultTextStyle(TextStyle.Default);
text.DefaultTextStyle(TextStyle.Default.BackgroundColor(Colors.Grey.Lighten3));
text.AlignLeft();
text.ParagraphSpacing(10);
@@ -251,7 +251,7 @@ namespace QuestPDF.Examples
text.EmptyLine();
foreach (var i in Enumerable.Range(1, 100))
foreach (var i in Enumerable.Range(1, 1000))
{
text.Line($"{i}: {Placeholders.Paragraph()}");