Files
QuestPDF/QuestPDF/Drawing/Proxy/DebugStackItem.cs
T
2021-09-07 00:32:51 +02:00

14 lines
423 B
C#

using System.Collections.Generic;
using QuestPDF.Infrastructure;
namespace QuestPDF.Drawing.Proxy
{
public class DebugStackItem
{
public IElement Element { get; internal set; }
public Size AvailableSpace { get; internal set; }
public SpacePlan SpacePlan { get; internal set; }
public ICollection<DebugStackItem> Stack { get; internal set; } = new List<DebugStackItem>();
}
}