Improved infinite layout debugging experience

This commit is contained in:
Marcin Ziąbek
2021-09-07 00:32:51 +02:00
parent 5e7f2a3adf
commit 6a3bfd855e
25 changed files with 343 additions and 225 deletions
+14
View File
@@ -0,0 +1,14 @@
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>();
}
}