From 75d77c39924629eaebf6b721a541407e19ced762 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Tue, 24 Feb 2026 16:51:15 +0100 Subject: Add ValueRank and ArrayDimensions to OpcUaNodeInfo Read both attributes at node setup alongside the existing metadata. ValueRank is mapped to human-readable names (Scalar, OneDimension, etc.) and ArrayDimensions is formatted as a comma-separated size list. Both are shown in the demo tooltip. --- demo/NodePage.qml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'demo/NodePage.qml') diff --git a/demo/NodePage.qml b/demo/NodePage.qml index 9b23502..e089f0e 100644 --- a/demo/NodePage.qml +++ b/demo/NodePage.qml @@ -307,6 +307,8 @@ Page { + "\nDescription: " + (node.info.description || "—") + "\nNode Class: " + (node.info.nodeClass || "—") + "\nData Type: " + (node.info.dataType || "—") + + "\nValue Rank: " + (node.info.valueRank || "—") + + "\nArray Dimensions: " + (node.info.arrayDimensions || "—") + "\nAccess Level: " + node.info.accessLevel + "\nStatus: " + (node.info.status || "—") + "\nSource Time: " + (node.info.sourceTimestamp.toLocaleString() || "—") -- cgit v1.2.3