DrawCommand.cs 381 B

12345678910111213141516
  1. using QuestPDF.Infrastructure;
  2. namespace QuestPDF.LayoutTests.TestEngine;
  3. internal class PageDrawingCommand
  4. {
  5. public Size RequiredArea { get; set; }
  6. public ICollection<ChildDrawingCommand> Children { get; set; }
  7. }
  8. internal class ChildDrawingCommand
  9. {
  10. public string ChildId { get; set; }
  11. public Position Position { get; set; }
  12. public Size Size { get; set; }
  13. }