VirtualUserScript VerifyLE Method (Double, Double, Double, Boolean)C# API
Verifies that one double is less than or equal to another.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public bool VerifyLE(
	double arg1,
	double arg2,
	double delta,
	bool throwException
)

Parameters

arg1
Type: System Double
The 1st double.
arg2
Type: System Double
The 2nd double.
delta
Type: System Double
The maximum permitted difference between the values.
throwException
Type: System Boolean
true if an FCException should be thrown if the 1st double is not less than or equal to the 2nd double.

Return Value

true if the 1st double is less than or equal to the 2nd double; otherwise, false.
See Also