当前位置: 代码迷 >> 综合 >> D365 自动读取控件显示值
  详细解决方案

D365 自动读取控件显示值

热度:91   发布时间:2023-10-25 09:20:07.0

在已知控件名称,无法得知控件类型的情况下使用

Object      control;
str         txt;
control = element.design().controlName('FieldName') ;if (SysTest::hasMethod(control, identifierStr(text)))
{txt= control.text();
}else if (SysTest::hasMethod(control, identifierStr(value)))
{txt= control.value();
}