このページでは

AttributeOperand QML Type

OPC UA AttributeOperand型。詳細...

Import Statement: import QtOpcUa
Since: QtOpcUa 5.13
Status: Deprecated since 6.9

この型はQtOpcUa 6.9以降非推奨です。新しいコードでは使用しないことを強くお勧めします。

プロパティ

詳細説明

AttributeOperandはOPC UA 1.05 part 4の7.7.4.4で定義されている。SimpleAttributeOperand と目的は同じですが、設定可能なオプションが多くなっています。

プロパティの説明

alias : string

オペランドの別名。これにより、このインスタンスをフィルタの他の操作のオペランドとして使用することができます。

browsePath : list<OpcUaNodeId>

属性を保持するノードへのブラウズ・パス。

import QtOpcUa as QtOpcUa

QtOpcUa.AttributeOperand {
    ...
    browsePath: [
        QtOpcUa.NodeId {
            identifier: "Message"
            ns: "http://opcfoundation.org/UA/"
         }
         ...
    ]
}

indexRange : string

単一の値または属性値のサブセットを識別するために使用されるインデックス範囲の文字列。

import QtOpcUa as QtOpcUa

QtOpcUa.AttributeOperand {
    ...
    indexRange: "0:2"
}

nodeAttribute : Constants.NodeAttribute

browsePath が指すノードの属性。デフォルト値はConstants.NodeAttribute.Value です。

import QtOpcUa as QtOpcUa

QtOpcUa.AttributeOperand {
    ...
    nodeAttribute: QtOpcUa.Constants.NodeAttribute.Value
}

typeId : string

型定義ノードのノード ID。オペランドは、型またはそのサブタイプのいずれかになります。

import QtOpcUa as QtOpcUa

QtOpcUa.AttributeOperand {
    ...
    typeId: "ns=0;i=2041"
}

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.