| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System.Drawing;
- 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)
- .FontSize(16 + i / 4);
- }
- });
- });
- });
- }
- }
- }
|