Files
QuestPDF/QuestPDF/Elements/Text/Calculation/TextDrawingRequest.cs
T
2022-05-22 20:25:11 +02:00

17 lines
449 B
C#

using QuestPDF.Drawing;
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; }
}
}