IGraphChangedListenerVertexPropertyChanged Method |
Raised after the property of a vertex changed.
Namespace:
VelocityGraph.Frontenac.Blueprints.Util.Wrappers.Event.Listener
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax void VertexPropertyChanged(
IVertex vertex,
string key,
Object oldValue,
Object setValue
)
Sub VertexPropertyChanged (
vertex As IVertex,
key As String,
oldValue As Object,
setValue As Object
)
void VertexPropertyChanged(
IVertex^ vertex,
String^ key,
Object^ oldValue,
Object^ setValue
)
abstract VertexPropertyChanged :
vertex : IVertex *
key : string *
oldValue : Object *
setValue : Object -> unit
Parameters
- vertex
- Type: VelocityGraph.Frontenac.BlueprintsIVertex
the vertex that changed - key
- Type: SystemString
the key of the property that changed - oldValue
- Type: SystemObject
the old value of the property - setValue
- Type: SystemObject
the new value of the property
See Also