NodeStatesMove


Description

An event that reports a State object has been moved within a Node object's States collection.

Syntax

aModel_NodeStatesMove(aNode, aState, iPositionOld)

 

Parameter Description
aModel a Model object.
aNode the Node object in whose  States collection the state moved.
aState the State object that moved.
iPositionOld the previous position (0-indexed) of the state.

Guarantees

Remarks

The state's new position can be found with this expression:

aNode.States.Indexes(aState)

The state's name can be found with this expression:

aState.Name

Applies To

Model

Also See:

Events: an Overview