13 lines
300 B
C#
13 lines
300 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |