将字符串值设置为 Viso shapedata
我有一个 visio 形状,其形状数据列 Prop.Name
类型为字符串
当我尝试使用
设置其值时 Visio.Cell propCell = _shapeList[i].get_Cells("Prop.Owner");
propCell.FormulaForceU = "asd";
我收到错误:#NAME?
如果我传递数字字符串,则不会发生这种情况。
我如何传递数字以外的字符?
I have a visio shape with shape data column Prop.Name
of type string
when i try to set its value usingVisio.Cell propCell = _shapeList[i].get_Cells("Prop.Owner");
propCell.FormulaForceU = "asd";
I get an error: #NAME?
This does not happen if i pass a numeric string .
How can i pass characters other than number ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在尝试使用普通字符串更新形状属性值,如“设置值”,它会给出错误
#NAME?
。给出
c.Formula ="\"Set Value\"";
后,它开始工作。
I am trying to update the shape property value with the normal string as like 'Set Value' it gives error
#NAME?
.After giving
c.Formula ="\"Set Value\"";
it begins to work.