18 lines
427 B
C#
18 lines
427 B
C#
using QuestPDF.Drawing;
|
|
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.Elements
|
|
{
|
|
internal class MinimalBox : ContainerElement
|
|
{
|
|
internal override void Draw(Size availableSpace)
|
|
{
|
|
var targetSize = base.Measure(availableSpace);
|
|
|
|
if (targetSize.Type == SpacePlanType.Wrap)
|
|
return;
|
|
|
|
base.Draw(targetSize);
|
|
}
|
|
}
|
|
} |