| IGraphChangedListenerEdgePropertyChanged Method  | 
 
                Raised after the property of a edge changed.
            
 
    Namespace: 
   VelocityGraph.Frontenac.Blueprints.Util.Wrappers.Event.Listener
    Assembly:
   VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
 Syntax
Syntaxvoid EdgePropertyChanged(
	IEdge edge,
	string key,
	Object oldValue,
	Object setValue
)
Sub EdgePropertyChanged ( 
	edge As IEdge,
	key As String,
	oldValue As Object,
	setValue As Object
)
void EdgePropertyChanged(
	IEdge^ edge, 
	String^ key, 
	Object^ oldValue, 
	Object^ setValue
)
abstract EdgePropertyChanged : 
        edge : IEdge * 
        key : string * 
        oldValue : Object * 
        setValue : Object -> unit 
Parameters
- edge
- Type: VelocityGraph.Frontenac.BlueprintsIEdge
 the edge 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
See Also