| 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: 
   VelocityGraph.Frontenac.Blueprints.Util
    Assembly:
   VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
 Syntax
Syntaxpublic static bool HaveEqualProperties(
	this IElement a,
	IElement b
)
<ExtensionAttribute>
Public Shared Function HaveEqualProperties ( 
	a As IElement,
	b As IElement
) As Boolean
public:
[ExtensionAttribute]
static bool HaveEqualProperties(
	IElement^ a, 
	IElement^ b
)
[<ExtensionAttribute>]
static member HaveEqualProperties : 
        a : IElement * 
        b : IElement -> bool 
Parameters
- a
- Type: VelocityGraph.Frontenac.BlueprintsIElement
 an element
- b
- Type: VelocityGraph.Frontenac.BlueprintsIElement
 an element
Return Value
Type: 
Booleanwhether 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
See Also