Files
QuestPDF/QuestPDF/Elements/Text/Calculation/TextDrawingRequest.cs
T
2021-09-13 20:29:53 +02:00

16 lines
425 B
C#

using QuestPDF.Infrastructure;
namespace QuestPDF.Elements.Text.Calculation
{
internal class TextDrawingRequest
{
public ICanvas Canvas { get; set; }
public IPageContext PageContext { get; set; }
public int StartIndex { get; set; }
public int EndIndex { get; set; }
public float TotalAscent { get; set; }
public Size TextSize { get; set; }
}
}