PySide6.QtOpcUa.QOpcUaRelativePathElement¶
- class QOpcUaRelativePathElement¶
- The OPC UA RelativePathElement. More… - Synopsis¶- Methods¶- def - __init__()
- def - isInverse()
- def - __ne__()
- def - __eq__()
- def - setIsInverse()
- def - setTargetName()
- def - targetName()
 - Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - Detailed Description¶- QOpcUaRelativePathElementdefines an element of a relative path on an OPC UA server. This is needed for resolution of browse paths to node ids in- resolveBrowsePath().- __init__()¶
 - Constructs a relative path element with both flags set to - false.- __init__(rhs)
- Parameters:
 
 - Constructs a relative path element from - rhs.- __init__(target, refType)
- Parameters:
- target – - QOpcUaQualifiedName
- refType – - ReferenceTypeId
 
 
 - Constructs a relative path element with - targetName- target,- ReferenceTypeId- refTypeand both flags set to- false.- __init__(target, refType)
- Parameters:
- target – - QOpcUaQualifiedName
- refType – str 
 
 
 - Constructs a relative path element with - targetName- target, reference type node id- refTypeand both flags set to- false.- includeSubtypes()¶
- Return type:
- bool 
 
 - Returns the value of the includeSubtypes flag. - See also - isInverse()¶
- Return type:
- bool 
 
 - Returns the value of the isInverse flag. - See also - __ne__(rhs)¶
- Parameters:
- Return type:
- bool 
 
 - Returns - trueif- lhshas a different value than- rhs.- __eq__(rhs)¶
- Parameters:
- Return type:
- bool 
 
 - Returns - trueif- lhshas the same value as- rhs.- referenceTypeId()¶
- Return type:
- str 
 
 - Returns the type id of the reference connecting this node to the previous node. - See also - setIncludeSubtypes(includeSubtypes)¶
- Parameters:
- includeSubtypes – bool 
 
 - Sets the - includeSubtypesflag to- includeSubtypes. If the flag is- true, the lookup also follows references with subtypes of- referenceTypeId().- See also - setIsInverse(isInverse)¶
- Parameters:
- isInverse – bool 
 
 - Sets the - isInverseflag to- isInverse. If the flag is- true, the lookup follows the reverse reference.- See also - setReferenceTypeId(referenceTypeId)¶
- Parameters:
- referenceTypeId – - ReferenceTypeId
 
 - Sets the reference type id to - referenceTypeId.- See also - setReferenceTypeId(referenceTypeId)
- Parameters:
- referenceTypeId – str 
 
 - Sets the reference type id to - referenceTypeId.- setTargetName(targetName)¶
- Parameters:
- targetName – - QOpcUaQualifiedName
 
 - Sets the target name to - targetName, for example- QOpcUaQualifiedName(0, “DataTypes”).- See also - targetName()¶
- Return type:
 
 - Returns the qualified name of the reference’s target. - See also