17 lines
449 B
C#
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; }
|
|
}
|
|
} |