Click or drag to resize

MotionSystemIncrementalModeChanged Event

This event is raised when the incremental mode is changed.

Namespace:  ABB.Robotics.Controllers.MotionDomain
Assembly:  ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax
C#
public event IncrementalModeEventHandler IncrementalModeChanged

Value

Type: ABB.Robotics.Controllers.MotionDomainIncrementalModeEventHandler
Examples
This example sets up a subscription for the event.
Controller c = new Controller();
MotionSystem motion = c.MotionSystem;
motion.IncrementalModeChanged +=new IncrementalModeEventHandler(IncrementalModeHasChanged);

private void IncrementalModeHasChanged(MotionSystem sender, IncrementalModeEventArgs e)
{
    // Do something useful
}
See Also