.
属性‘displaymode’
.
.

使用此编译指令定义单个变量的显示模式。此定义将覆盖监视变量显示的全局设置,该设置是通过菜单Debug ➔ Display Mode中的命令进行的。

语法

{attribute 'displaymode':=<displaymode>}

以下定义是可能的

  • 二进制格式
    • {attribute 'displaymode':='bin'}
    • {attribute 'displaymode':='binary'}
  • 十进制格式
    • attribute 'displaymode':='dec'}
    • {attribute 'displaymode':='decimal'}
  • 十六进制格式
    • {attribute 'displaymode':='hex'}
    • attribute 'displaymode':='hexadecimal'}

插入位置:在声明相应变量的行上方的行。

.

.例如

VAR
 {attribute 'displaymode':='hex'}
 dwVar1: DWORD;
END_VAR