mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
arrange operations into folders in line with grouping from the specification and start creating a context to mutate through operations.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
namespace UglyToad.Pdf.Graphics.Operations.TextState
|
||||
{
|
||||
internal class SetWordSpacing : IGraphicsStateOperation
|
||||
{
|
||||
public const string Symbol = "Tw";
|
||||
|
||||
public string Operator => Symbol;
|
||||
|
||||
public decimal Spacing { get; }
|
||||
|
||||
public SetWordSpacing(decimal spacing)
|
||||
{
|
||||
Spacing = spacing;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"{Spacing} {Symbol}";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user