20 lines
429 B
C#
20 lines
429 B
C#
using QuestPDF.Drawing;
|
|
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.Elements
|
|
{
|
|
internal class Empty : Element
|
|
{
|
|
internal static Empty Instance { get; } = new Empty();
|
|
|
|
internal override SpacePlan Measure(Size availableSpace)
|
|
{
|
|
return SpacePlan.FullRender(0, 0);
|
|
}
|
|
|
|
internal override void Draw(Size availableSpace)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |