Navigation: Code Documentation > RSCommon > GGraph > Classes > TGCustomGraph
TGCustomGraph Events
Name
Description
OnAddNode
Occurs when a node is added to the graph.
Use the OnAddNode event when you want to do something every time a node is added to the graph.
OnNodeCaptionChange
Occurs when the Caption property for a node is about to change.
Write an OnNodeCaptionChange event handler to take some action when the caption is about to change.
OnNodeChange
Occurs when the node changes (edges are added or removed, weight is changed, etc).
Write an OnNodeChange event handler when you want to take some action when the node changes.
OnRemoveNode
Occurs when a node is removed (extracted or deleted) from the graph.
Use the OnRemoveNode event when you want to do something every time a node is removed from the graph.
Top