如何将枚举值转换为字符串值?
我正在获取 PBObjects/Controls 的属性列表。所以我需要拿走财产。我通过变量定义获得了属性值。
对于前
vd_def = cd_def.variablelist[li_i]
vd_def.name
vd_def.initialvalue // if this initial value is enumerated, then how can i get this value
请帮助我。
提前致谢。
i am taking the property list of PBObjects/Controls. So i need to take the property. I got the property values throug variable definition.
for ex
vd_def = cd_def.variablelist[li_i]
vd_def.name
vd_def.initialvalue // if this initial value is enumerated, then how can i get this value
please help me.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 typedefinition 对象从这里得到了我的问题的答案,
我得到了枚举类型的数据类型(它显示了属性名称)。并将该属性名称的任何值和数据类型传递给一个函数,如下所示
i got the answer for my question
using typedefinition object from here i'm getting the datatypeof that enumerated type(it shows the property name). and passing the any value and datatypeof that property name to a function which is like