[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.FormulaSyntaxTree.Equals

Equals Method

Equals(object)

Indicates whether this formula syntax tree is equal to the specified object.

Two FormulaSyntaxTree instances are considered equal when the specified object is also a FormulaSyntaxTree and their root syntax nodes are equal. This method returns false if obj is null or is not a FormulaSyntaxTree.

Declaration
public override bool Equals(object obj)
Public Overrides Function Equals(obj As Object) As Boolean
Parameters
Type Name Description
object obj

The object to compare with this formula syntax tree. May be null.

Returns
Type Description
bool true if obj is a FormulaSyntaxTree with an equal root syntax node; otherwise, false.
Overrides