.

UserLimit.Action

The action associated with the user limit. When the user limit’s trigger fires, the parent Axis object will process this action.

Version History

Introduced in MPX 2.0.

Type

Mpx.Action

Common Exceptions

 
Error Occurs when...
UserLimitCannotConfigure Attempting to set Action and the user limit is not in a ‘being configured’ state.

To resolve the problem, call UserLimit.ConfigurationBegin to begin configuring the user limit.

Visual Basic

Syntax

Property Action As Mpx.Action

Sample Code

 

Dim userLimit As Mpx.UserLimit = controller.Axis(0).UserLimit(0)
userLimit.ConfigurationReset() ' Reset user limit configuration before configuring it
userLimit.ConfigurationBegin() ' Begin configuration

' Configure user limit
userLimit.TriggerType = Mpx.UserLimitTrigger.Timer
userLimit.Duration = 5.0
userLimit.GenerateEvent = True
userLimit.Action = Mpx.Action.None

userLimit.ConfigurationEnd() ' Writes configuration to the controller


Sample Application

 

C#

Syntax

Mpx.Action Action;

Sample Code

 

Mpx.UserLimit userLimit = controller.Axis[0].UserLimit[0];

 

userLimit.ConfigurationReset(); // Reset user limit configuration before configuring it

userLimit.ConfigurationBegin(); // Begin configuration

 

// Configure user limit

userLimit.TriggerType = Mpx.UserLimitTrigger.Timer;

userLimit.Duration = 5.0;

userLimit.GenerateEvent = true;

userLimit.Action = Mpx.Action.None;

 

userLimit.ConfigurationEnd(); // Writes configuration to the controller

 

 

See Also

Duration
GenerateEvent
TriggerType

Enumerations
Action

Overviews
User Limits Overview

 

       Legal Notice  |  Tech Email  |  Feedback
      
Copyright ©
2001-2021 Motion Engineering