[]
Base abstract class representing PDF operator.
public abstract class OperatorBase
protected OperatorBase()
Gets the operator's description.
public abstract string Desc { get; }
Gets the operator's PDF name.
public abstract string Name { get; }
Determines whether the specified OperatorBase instances are considered same, if both v1 and v2 are null, the method returns true.
public static bool IsSame(OperatorBase v1, OperatorBase v2)
v1
OperatorBasev2
OperatorBaseDetermines whether the provided operator is the same as the current operator.
public virtual bool IsSame(OperatorBase other)
other
OperatorBaseA OperatorBase object.
true if the provided operator is the same as the current operator; otherwise, false.