QuickOPC User's Guide and Reference
UARange Constructor(Double,Double)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.DataAccess Namespace > UARange Class > UARange Constructor : UARange Constructor(Double,Double)
Lowest value in the range.
Highest value in the range.
Initializes a new range with given lowest and highest values.
Syntax
'Declaration
 
Public Function New( _
   ByVal low As Double, _
   ByVal high As Double _
)
'Usage
 
Dim low As Double
Dim high As Double
 
Dim instance As New UARange(low, high)
public UARange( 
   double low,
   double high
)
public:
UARange( 
   double low,
   double high
)

Parameters

low
Lowest value in the range.
high
Highest value in the range.
Remarks
low may be greater than high. In such case, the range is called "reversed", but otherwise behaves as if the low and high limits were in the proper order.
Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also