IDocumentCanvas.cs 365 B

1234567891011121314151617
  1. using QuestPDF.Drawing;
  2. namespace QuestPDF.Infrastructure
  3. {
  4. internal interface IDocumentCanvas
  5. {
  6. void SetSemanticTree(SemanticTreeNode? semanticTree);
  7. void BeginDocument();
  8. void EndDocument();
  9. void BeginPage(Size size);
  10. void EndPage();
  11. IDrawingCanvas GetDrawingCanvas();
  12. }
  13. }