DebugStackItem.cs 432 B

1234567891011121314
  1. using System.Collections.Generic;
  2. using QuestPDF.Infrastructure;
  3. namespace QuestPDF.Drawing.Proxy
  4. {
  5. internal sealed class DebugStackItem
  6. {
  7. public IElement Element { get; internal set; }
  8. public Size AvailableSpace { get; internal set; }
  9. public SpacePlan SpacePlan { get; internal set; }
  10. public ICollection<DebugStackItem> Stack { get; internal set; } = new List<DebugStackItem>();
  11. }
  12. }