2021-02-08 14:36:12 +01:00
|
|
|
using QuestPDF.Infrastructure;
|
|
|
|
|
|
|
|
|
|
namespace QuestPDF.UnitTests.TestEngine.Operations
|
|
|
|
|
{
|
2021-09-18 23:40:21 +02:00
|
|
|
internal class CanvasDrawTextOperation : OperationBase
|
2021-02-08 14:36:12 +01:00
|
|
|
{
|
|
|
|
|
public string Text { get; }
|
|
|
|
|
public Position Position { get; }
|
|
|
|
|
public TextStyle Style { get; }
|
|
|
|
|
|
2021-09-18 23:40:21 +02:00
|
|
|
public CanvasDrawTextOperation(string text, Position position, TextStyle style)
|
2021-02-08 14:36:12 +01:00
|
|
|
{
|
|
|
|
|
Text = text;
|
|
|
|
|
Position = position;
|
|
|
|
|
Style = style;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|