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

Namespace: yWorks.yFiles.UI.Model
Assembly: yWorks.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

Syntax

C#
public delegate void LabelTextChanged(
	ILabel label,
	string oldText
)
Visual Basic
Public Delegate Sub LabelTextChanged ( _
	label As ILabel, _
	oldText As String _
)

Parameters

label
Type: yWorks.yFiles.UI.Model..::..ILabel
The label whose Text has changed.
oldText
Type: System..::..String
The old text.

See Also