[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Operators.OperatorBase

Class OperatorBase

Namespace
GrapeCity.Documents.Pdf.Operators
Assembly
GcDocs.Pdf.dll

Base abstract class representing PDF operator.

public abstract class OperatorBase
Inheritance
object
OperatorBase
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Constructors

OperatorBase()

protected OperatorBase()

Properties

Desc

Gets the operator's description.

public abstract string Desc { get; }

Property Value

string

Name

Gets the operator's PDF name.

public abstract string Name { get; }

Property Value

string

Methods

IsSame(OperatorBase, OperatorBase)

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)

Parameters

v1 OperatorBase
v2 OperatorBase

Returns

bool

IsSame(OperatorBase)

Determines whether the provided operator is the same as the current operator.

public virtual bool IsSame(OperatorBase other)

Parameters

other OperatorBase

A OperatorBase object.

Returns

bool

true if the provided operator is the same as the current operator; otherwise, false.