.

UserLimit.TriggerType

The trigger type used for the user limit.

Version History

Introduced in MPX 2.0.

Type

Mpx.UserLimitTrigger

Common Exceptions

 
Error Occurs when...
UserLimitCannotConfigure

Attempting to set the trigger type 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 TriggerType As Mpx.UserLimitTrigger

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

UserLimit1

C#

Syntax

Mpx.UserLimitTrigger TriggerType;

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

Action
Duration
GenerateEvent

Enumerations
UserLimitTrigger

Overviews
User Limits Overview


 

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