Files
QuestPDF/QuestPDF/Drawing/SpacePlan/TextRender.cs
T
2021-08-09 22:35:39 +02:00

15 lines
332 B
C#

using QuestPDF.Infrastructure;
namespace QuestPDF.Drawing.SpacePlan
{
internal class TextRender : FullRender
{
public float Ascent { get; set; }
public float Descent { get; set; }
public TextRender(float width, float height) : base(width, height)
{
}
}
}