Event delegate method that is used in the IPortLocationModelParameterChangeReporter interface. DefaultGraph by default has an implementation of this interface in it's Lookup(Type).

Namespace: yWorks.yFiles.UI.Model
Assembly: yWorks.yFilesWPF.Viewer (in yWorks.yFilesWPF.Viewer.dll) Version: 2.2.0.2 (2.2.0.2)

Syntax

C#
public delegate void PortLocationModelParameterChanged(
	IPort port,
	IPortLocationModelParameter oldParameter
)
Visual Basic
Public Delegate Sub PortLocationModelParameterChanged ( _
	port As IPort, _
	oldParameter As IPortLocationModelParameter _
)

Parameters

port
Type: yWorks.yFiles.UI.Model..::..IPort
The port whose location changed.
oldParameter
Type: yWorks.yFiles.UI.Model..::..IPortLocationModelParameter
The old parameter of the port.

Remarks

This delegate will be triggered when the parameter has changed.

See Also