Optimized the TextLine object

This commit is contained in:
Marcin Ziąbek
2021-09-14 00:16:16 +02:00
parent 094b25a9fb
commit acdd8164be
4 changed files with 33 additions and 15 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
using System.Linq;
using System;
using System.Linq;
using NUnit.Framework;
using QuestPDF.Examples.Engine;
using QuestPDF.Fluent;
@@ -35,7 +36,7 @@ namespace QuestPDF.Examples
text.Span(Placeholders.LoremIpsum());
text.Line("This is target text that does not show up. > This is a short sentence that will be wrapped into second line hopefully, right? <");
text.Line($"This is target text that does not show up. {DateTime.UtcNow:T} > This is a short sentence that will be wrapped into second line hopefully, right? <");
});
});
}