Added: Line, Reimplemented: Column, Row and Decoration

This commit is contained in:
Marcin Ziąbek
2022-01-09 00:11:34 +01:00
parent a2ce31022c
commit f8057a840c
49 changed files with 1202 additions and 599 deletions
+3 -3
View File
@@ -23,10 +23,10 @@ namespace QuestPDF.Examples
page.Size(PageSizes.A7.Landscape());
page.Background(Colors.White);
page.Header().Stack(stack =>
page.Header().Column(column =>
{
stack.Item().ShowOnce().Text("This header is visible on the first page.");
stack.Item().SkipOnce().Text("This header is visible on the second page and all following.");
column.Item().ShowOnce().Text("This header is visible on the first page.");
column.Item().SkipOnce().Text("This header is visible on the second page and all following.");
});
page.Content()