A container class for multidimensional arrays. More...
Header: | #include <QOpcUaMultiDimensionalArray> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS OpcUa) target_link_libraries(mytarget PRIVATE Qt6::OpcUa) |
qmake: | QT += opcua |
QOpcUaMultiDimensionalArray(const QList<quint32> &arrayDimensions) | |
QOpcUaMultiDimensionalArray(const QVariantList &value, const QList<quint32> &arrayDimensions) | |
QOpcUaMultiDimensionalArray(const QOpcUaMultiDimensionalArray &other) | |
QOpcUaMultiDimensionalArray & | operator=(const QOpcUaMultiDimensionalArray &rhs) |
QList<quint32> | arrayDimensions() const |
int | arrayIndex(const QList<quint32> &indices) const |
bool | isValid() const |
void | setArrayDimensions(const QList<quint32> &arrayDimensions) |
bool | setValue(const QList<quint32> &indices, const QVariant &value) |
void | setValueArray(const QVariantList &value) |
QVariant | value(const QList<quint32> &indices) const |
QVariantList | valueArray() const |
QVariantList & | valueArrayRef() |
QVariant | operator QVariant() const |
bool | operator==(const QOpcUaMultiDimensionalArray &other) const |
This class manages arrays of Qt OPC UA types with associated array dimensions information. It is returned as value when a multidimensional array is received from the server. It can also be used as a write value or as parameter for filters and method calls.
Creates a multidimensional array with preallocated data fitting arrayDimensions.
Constructs a multidimensional array with value value and array dimensions arrayDimensions.
Constructs a multidimensional array from other.
Sets the values from rhs in the multidimensional array.
Returns the dimensions of the multidimensional array. The element at position n contains the length of the n-th dimension.
See also setArrayDimensions().
Returns the array index in valueArray() of the element identified by indices. If indices is invalid for the array or if the array's dimensions don't
match the size of valueArray(), the invalid index -1
is returned.
Returns true
if the multidimensional array is valid
Sets the dimensions of the multidimensional array to arrayDimensions.
See also arrayDimensions().
Sets the value at position indices to value. Returns true
if the value has been successfully set.
See also value().
Sets the value array of the multidimensional array to value.
See also valueArray().
Returns the value of the element identified by indices. If the indices are invalid for the array, an empty QVariant is returned.
See also setValue().
Returns the value array of the multidimensional array.
See also setValueArray().
Returns a reference to the value array of the multidimensional array.
Converts this multidimensional array to QVariant.
Returns true
if this multidimensional array has the same value as other.