将字符串值设置为 Viso shapedata

发布于 2024-10-09 17:37:52 字数 270 浏览 2 评论 0原文

我有一个 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 using
Visio.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心的憧憬 2024-10-16 17:37:52
propCell.FormulaForceU = "\"asd\"";
propCell.FormulaForceU = "\"asd\"";
空城之時有危險 2024-10-16 17:37:52

我正在尝试使用普通字符串更新形状属性值,如“设置值”,它会给出错误#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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文