ElementHelpersGetProperties Method |
Get a clone of the properties of the provided element.
In other words, a HashMap is created and filled with the key/values of the element's properties.
Namespace:
VelocityGraph.Frontenac.Blueprints.Util
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public static IDictionary<string, Object> GetProperties(
this IElement element
)
<ExtensionAttribute>
Public Shared Function GetProperties (
element As IElement
) As IDictionary(Of String, Object)
public:
[ExtensionAttribute]
static IDictionary<String^, Object^>^ GetProperties(
IElement^ element
)
[<ExtensionAttribute>]
static member GetProperties :
element : IElement -> IDictionary<string, Object>
Parameters
- element
- Type: VelocityGraph.Frontenac.BlueprintsIElement
the element to get the properties of
Return Value
Type:
IDictionaryString,
Objecta clone of the properties of the element
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