18 lines
480 B
C#
18 lines
480 B
C#
|
|
using QuestPDF.Infrastructure;
|
||
|
|
|
||
|
|
namespace QuestPDF.UnitTests.TestEngine.Operations
|
||
|
|
{
|
||
|
|
internal class CanvasDrawTextOperationBase : OperationBase
|
||
|
|
{
|
||
|
|
public string Text { get; }
|
||
|
|
public Position Position { get; }
|
||
|
|
public TextStyle Style { get; }
|
||
|
|
|
||
|
|
public CanvasDrawTextOperationBase(string text, Position position, TextStyle style)
|
||
|
|
{
|
||
|
|
Text = text;
|
||
|
|
Position = position;
|
||
|
|
Style = style;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|