On Node Text editing

Hi,

I am using On Node text editing, do we get any event after editing.
For ex
If Node is have text “ABC”
Some one clicked on text and change to “XYZ”
So, do we get any event that the text is change for this node may be with old and new value or only new value.
Or something similar…?

As with most events, there are two places – either locally, in your case on the TextBlock, or globally, usually as a DiagramEvent for the Diagram.

The TextBlock.textEdited event handler: TextBlock | GoJS API

The “TextEdited” DiagramEvent: GoJS Events -- Northwoods Software

Hey Thanks Walter…
It was very helpful…