QOpcUaRange#
The OPC UA Range type. More…
Synopsis#
Functions#
Detailed Description#
This is the Qt OPC UA representation for the OPC UA Range type defined in OPC-UA part 8, 5.6.2. It consists of two double values which mark minimum and maximum of the range. Ranges are mostly used to store information about acceptable values for a node.
- class PySide6.QtOpcUa.QOpcUaRange#
PySide6.QtOpcUa.QOpcUaRange(arg__1)
PySide6.QtOpcUa.QOpcUaRange(low, high)
- Parameters
arg__1 –
PySide6.QtOpcUa.QOpcUaRange
low –
double
high –
double
Constructs a range from rhs
.
Constructs a range with low value low
and high value high
.
- PySide6.QtOpcUa.QOpcUaRange.high()#
- Return type
double
Returns the high value of the range.
See also
- PySide6.QtOpcUa.QOpcUaRange.low()#
- Return type
double
Returns the low value of the range.
See also
- PySide6.QtOpcUa.QOpcUaRange.__eq__(rhs)#
- Parameters
- Return type
bool
Returns true
if this range has the same value as rhs
.
- PySide6.QtOpcUa.QOpcUaRange.setHigh(high)#
- Parameters
high –
double
Sets the high value of the range to high
.
See also
- PySide6.QtOpcUa.QOpcUaRange.setLow(low)#
- Parameters
low –
double
Sets the low value of the range to low
.
See also