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