Click or drag to resize

ElementHelpersAreEqual Method

A standard method for determining if two elements are equal. This method should be used by any Element.equals() implementation to ensure consistent behavior.

Namespace:  Frontenac.Blueprints.Util
Assembly:  VelocityGraph (in VelocityGraph.dll) Version: 10.1.0.0 (10.1)
Syntax
public static bool AreEqual(
	this IElement a,
	Object b
)

Parameters

a
Type: Frontenac.BlueprintsIElement
The first element
b
Type: SystemObject
The second element (as an object)

Return Value

Type: Boolean
Whether the two elements are equal

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IElement. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also