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