mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
21 lines
441 B
C#
21 lines
441 B
C#
namespace UglyToad.Pdf.Graphics.Operations
|
|
{
|
|
internal class SetTextRenderingMode : IGraphicsStateOperation
|
|
{
|
|
public const string Symbol = "Tr";
|
|
|
|
public string Operator => Symbol;
|
|
|
|
public int Mode { get; }
|
|
|
|
public SetTextRenderingMode(int mode)
|
|
{
|
|
Mode = mode;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{Mode} {Symbol}";
|
|
}
|
|
}
|
|
} |