Click or drag to resize

ElementHelpersHaveEqualProperties Method

Determines whether two elements have the same properties. To be true, both must have the same property keys and respective values must be equals().

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

Parameters

a
Type: Frontenac.BlueprintsIElement
an element
b
Type: Frontenac.BlueprintsIElement
an element

Return Value

Type: Boolean
whether the two elements have equal properties

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