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
+4 -4
View File
@@ -36,14 +36,14 @@ namespace QuestPDF.Examples
container
.Background("#FFF")
.Padding(25)
.Stack(stack =>
.Column(column =>
{
for(var i = 1; i <= 4; i++)
{
stack.Item().Row(row =>
column.Item().Row(row =>
{
row.RelativeColumn(2).LabelCell(Placeholders.Label());
row.RelativeColumn(3).ValueCell().Text(Placeholders.Paragraph());
row.RelativeItem(2).LabelCell(Placeholders.Label());
row.RelativeItem(3).ValueCell().Text(Placeholders.Paragraph());
});
}
});