ElementHelpersSetProperties Method (IElement, IDictionaryString, Object) |
Set the properties of the provided element using the provided dictionary.
Namespace:
VelocityGraph.Frontenac.Blueprints.Util
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public static void SetProperties(
this IElement element,
IDictionary<string, Object> properties
)
<ExtensionAttribute>
Public Shared Sub SetProperties (
element As IElement,
properties As IDictionary(Of String, Object)
)
public:
[ExtensionAttribute]
static void SetProperties(
IElement^ element,
IDictionary<String^, Object^>^ properties
)
[<ExtensionAttribute>]
static member SetProperties :
element : IElement *
properties : IDictionary<string, Object> -> unit
Parameters
- element
- Type: VelocityGraph.Frontenac.BlueprintsIElement
the element to set the properties of - properties
- Type: System.Collections.GenericIDictionaryString, Object
the properties to set as a IDictionary<string, object>
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