class QOpcUaEnumField#

OPC UA 结构定义类型。 更多

新增于版本 6.7。

概要#

方法#

注意

本文档可能包含从 C++ 自动翻译为 Python 的代码片段。我们始终欢迎对代码片段进行翻译的贡献。如果您发现翻译有问题,也可以通过在 https:/bugreports.qt.io/projects/PYSIDE 上创建工单来通知我们。

详细描述#

这是 Qt OPC UA 对 OPC UA 部分定义的 OPC UA EnumField 类型的表示。它描述了枚举类型的字段。

__init__()#

默认构造函数无参数设置地构造枚举字段。

__init__(other)
参数:

other - QOpcUaEnumField

other 构造枚举字段。

description()#
返回类型:

QOpcUaLocalizedText

返回枚举字段的描述。

displayName()#
返回类型:

QOpcUaLocalizedText

返回枚举字段的显示名称。

name()#
返回类型:

str

返回枚举字段的名称。

也见

setName()

__ne__(rhs)#
参数:

rhsQOpcUaEnumField

返回类型:

bool

如果 lhsrhs 不相等,则返回 true

setDescription(description)#
参数:

descriptionQOpcUaLocalizedText

将枚举字段的描述设置为 description

也见

description()

setDisplayName(displayName)#
参数:

displayNameQOpcUaLocalizedText

将枚举字段的显示名称设置为 displayName

也见

displayName()

setName(name)#
参数:

name – str

将枚举字段的名称设置为 name

也见

name()

setValue(value)#
参数:

value – int

将枚举字段的枚举值设置为 value

也见

value()

swap(other)#
参数:

other - QOpcUaEnumField

交换枚举字段对象 other 与当前枚举字段对象。此操作非常快速且不会失败。

value()#
返回类型:

int

返回枚举字段的枚举值。

也见

setValue()