是否可以更改脚本中的元素注释可见性?即在脚本中执行与[Ctrl-Shift-Y] - [显示注释]相同的操作?
答案 0 :(得分:2)
是的,但不是直接的。
style = oldStyle + "Notes=100;"
Repository.Execute("UPDATE t_diagramobjects SET ObjectStyle=" + style + " WHERE InstanceID=" + instanceId)
假设您想要更改图表对象的instanceId
。此外oldStyle
具有当前内容ObjectStyle
,它以分号结尾,并且尚未包含“Notes =;”字符串。