ElementHelpersHaveEqualIds Method |
Simply tests if the element ids are equal().
Namespace:
Frontenac.Blueprints.Util
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 10.1.0.0 (10.1)
Syntaxpublic static bool HaveEqualIds(
this IElement a,
IElement b
)
<ExtensionAttribute>
Public Shared Function HaveEqualIds (
a As IElement,
b As IElement
) As Boolean
public:
[ExtensionAttribute]
static bool HaveEqualIds(
IElement^ a,
IElement^ b
)
[<ExtensionAttribute>]
static member HaveEqualIds :
a : IElement *
b : IElement -> bool
Parameters
- a
- Type: Frontenac.BlueprintsIElement
the first element - b
- Type: Frontenac.BlueprintsIElement
the second element
Return Value
Type:
BooleanWhether the two elements have equal ids
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