Operator
Overview
Operator is a class in Aspose.PDF FOSS for .NET.
Top-level base for all PDF content-stream operators.
This class provides 5 methods for working with Operator objects in .NET programs.
Available methods include: Accept, IsTextShowOperator, ToPdf, ToString, ValueEquals.
All public members are accessible to any .NET application after installing the Aspose.PDF FOSS for .NET package.
Properties: CommandName, Index.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
CommandName | string | Read | The PDF command name (last token of the serialised form, e.g. |
Index | int | Read/Write | 1-based position of this operator within its containing OperatorCollection. |
Methods
| Signature | Description |
|---|---|
ToPdf() | Serialize this operator to PDF syntax. |
ToString() | Default string form is the PDF serialisation, so callers (test helpers, debug logs) get the same content-stream text whether they hold an unparsed RawOperator or a typed subclass. |
Accept(visitor: IOperatorSelector) | Dispatch this operator to visitor. |
IsTextShowOperator(op: Operator) | True when op is a text-showing operator (Tj / TJ / ’ / " — concrete subclasses of TextShowOperator). |
ValueEquals(op: Operator) | True when this operator’s serialised PDF form equals op’s. |