.

UserLimit.Duration

The amount of time for which the user limit’s trigger conditions must be true before the user limit’s trigger is fired.

Version History

Introduced in MPX 2.0.

Units

Seconds

Type

Double

Common Exceptions

 
Error Occurs when...
UserLimitCannotConfigure

Attempting to set Duration 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 Duration As Double

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

double Duration;

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
GenerateEvent
TriggerType

Enumerations
UserLimitTrigger

Overviews
User Limits Overview

 

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