54 lines
1.7 KiB
C#
54 lines
1.7 KiB
C#
|
|
|
|
using System;
|
|
using NUnit.Framework;
|
|
using QuestPDF.Fluent;
|
|
using QuestPDF.Helpers;
|
|
using QuestPDF.Infrastructure;
|
|
using QuestPDF.Previewer;
|
|
|
|
namespace QuestPDF.UnitTests
|
|
{
|
|
public class PreviewerTests
|
|
{
|
|
[Test]
|
|
public void SendError()
|
|
{
|
|
Document
|
|
.Create(container =>
|
|
{
|
|
container.Page(page =>
|
|
{
|
|
page.Size(PageSizes.A4);
|
|
page.Margin(2, Unit.Centimetre);
|
|
page.PageColor(Colors.White);
|
|
page.DefaultTextStyle(x => x.FontSize(20));
|
|
|
|
page.Header()
|
|
.Text("Hello PDF!")
|
|
.SemiBold().FontSize(36).FontColor(Colors.Blue.Medium);
|
|
|
|
page.Content()
|
|
.PaddingVertical(1, Unit.Centimetre)
|
|
.Column(x =>
|
|
{
|
|
x.Spacing(20);
|
|
|
|
x.Item().Text(Placeholders.LoremIpsum());
|
|
x.Item().Image(Placeholders.Image(200, 100));
|
|
});
|
|
|
|
page.Footer()
|
|
.AlignCenter()
|
|
.Text(x =>
|
|
{
|
|
//throw new Exception("Dupa!");
|
|
x.Span("Page ");
|
|
x.CurrentPageNumber();
|
|
});
|
|
});
|
|
})
|
|
.ShowInPreviewer();
|
|
}
|
|
}
|
|
} |