CanvasDrawTextOperation.cs 480 B

123456789101112131415161718
  1. using QuestPDF.Infrastructure;
  2. namespace QuestPDF.UnitTests.TestEngine.Operations
  3. {
  4. internal class CanvasDrawTextOperationBase : OperationBase
  5. {
  6. public string Text { get; }
  7. public Position Position { get; }
  8. public TextStyle Style { get; }
  9. public CanvasDrawTextOperationBase(string text, Position position, TextStyle style)
  10. {
  11. Text = text;
  12. Position = position;
  13. Style = style;
  14. }
  15. }
  16. }