Files
QuestPDF/QuestPDF/Elements/Table/TableCellRenderingCommand.cs
T
2021-12-24 14:40:54 +01:00

11 lines
254 B
C#

using QuestPDF.Infrastructure;
namespace QuestPDF.Elements.Table
{
internal class TableCellRenderingCommand
{
public TableCell Cell { get; set; }
public Size Size { get; set; }
public Position Offset { get; set; }
}
}