55 lines
2.0 KiB
C#
55 lines
2.0 KiB
C#
using System.Drawing;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using QuestPDF.Examples.Engine;
|
|
using QuestPDF.Fluent;
|
|
using QuestPDF.Helpers;
|
|
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.Examples
|
|
{
|
|
public class DefaultTextStyleExamples
|
|
{
|
|
[Test]
|
|
public void Placeholder()
|
|
{
|
|
RenderingTest
|
|
.Create()
|
|
.PageSize(220, 270)
|
|
.ProduceImages()
|
|
.ShowResults()
|
|
.EnableDebugging()
|
|
.Render(container =>
|
|
{
|
|
container
|
|
.Padding(10)
|
|
.DefaultTextStyle(TextStyle.Default.Bold().Underline())
|
|
.Column(column =>
|
|
{
|
|
column.Item().Text("Default style applies to all children");
|
|
column.Item().Text("You can override certain styles").Underline(false).FontColor(Colors.Green.Darken2);
|
|
|
|
column.Item().PaddingTop(10).Border(1).Grid(grid =>
|
|
{
|
|
grid.Columns(4);
|
|
|
|
foreach (var i in Enumerable.Range(1, 16))
|
|
{
|
|
grid.Item()
|
|
.Border(1)
|
|
.BorderColor(Colors.Grey.Lighten1)
|
|
.Background(Colors.Grey.Lighten3)
|
|
.Width(50)
|
|
.Height(50)
|
|
.AlignCenter()
|
|
.AlignMiddle()
|
|
.Text(i.ToString(CultureInfo.InvariantCulture))
|
|
.FontSize(16 + i / 4);
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
}
|
|
} |