ValueInStateStoppingConditionConstraint Constructor (String, Double, Double, WhenToCheckConstraint, InequalityCondition, Boolean) | 
 
            Initializes a new instance.
            
 
    Namespace: 
   AGI.Foundation.StoppingConditions
    Assembly:
   AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic ValueInStateStoppingConditionConstraint(
	string elementIdentification,
	double threshold,
	double tolerance,
	WhenToCheckConstraint whenToCheck,
	InequalityCondition inequality,
	bool useAbsoluteValue
)
Public Sub New ( 
	elementIdentification As String,
	threshold As Double,
	tolerance As Double,
	whenToCheck As WhenToCheckConstraint,
	inequality As InequalityCondition,
	useAbsoluteValue As Boolean
)
public:
ValueInStateStoppingConditionConstraint(
	String^ elementIdentification, 
	double threshold, 
	double tolerance, 
	WhenToCheckConstraint whenToCheck, 
	InequalityCondition inequality, 
	bool useAbsoluteValue
)
new : 
        elementIdentification : string * 
        threshold : float * 
        tolerance : float * 
        whenToCheck : WhenToCheckConstraint * 
        inequality : InequalityCondition * 
        useAbsoluteValue : bool -> ValueInStateStoppingConditionConstraintParameters
- elementIdentification
 - Type: SystemString
The element in the state to compare to the threshold. - threshold
 - Type: SystemDouble
The threshold to compare with the elementIdentification. - tolerance
 - Type: SystemDouble
The tolerance to use when comparing the threshold with the value of the 
            elementIdentification. - whenToCheck
 - Type: AGI.Foundation.StoppingConditionsWhenToCheckConstraint
Should this StoppingConditionConstraint be checked when the stop is 
            detected or when the exact stop is found. - inequality
 - Type: AGI.Foundation.StoppingConditionsInequalityCondition
How to compare the computed value with the threshold. - useAbsoluteValue
 - Type: SystemBoolean
Should the absolute value of the 
            elementIdentification be used. 
See Also