| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using NUnit.Framework;
- using QuestPDF.Examples.Engine;
- using QuestPDF.Fluent;
- using QuestPDF.Helpers;
- using QuestPDF.Infrastructure;
- namespace QuestPDF.Examples
- {
- public class LineExamples
- {
- [Test]
- public void LineHorizontal()
- {
- RenderingTest
- .Create()
- .PageSize(PageSizes.A5)
- .ProduceImages()
- .ShowResults()
- .Render(container =>
- {
- container
- .Padding(15)
- .MinimalBox()
- .DefaultTextStyle(TextStyle.Default.Size(16))
- .Column(column =>
- {
- column.Item().Text("Above text");
- column.Item().PaddingVertical(5).LineHorizontal(1).LineColor(Colors.Grey.Medium);
- column.Item().Text("Below text");
- });
- });
- }
-
- [Test]
- public void LineVertical()
- {
- RenderingTest
- .Create()
- .PageSize(PageSizes.A5)
- .ProduceImages()
- .ShowResults()
- .Render(container =>
- {
- container
- .Padding(15)
- .DefaultTextStyle(TextStyle.Default.Size(16))
- .Row(row =>
- {
- row.AutoItem().Text("Left text");
- row.AutoItem().PaddingHorizontal(10).LineVertical(1).LineColor(Colors.Grey.Medium);
- row.AutoItem().Text("Right text");
- });
- });
- }
- }
- }
|