Visio 形状 - 获取 X、Y 位置
我已设法使用以下代码以编程方式将形状插入到 Visio 中:
ActiveWindow.Page.Drop(VisioApp.Documents["ORGCH_M.VSS"].Masters.ItemU["Executive"], 5.433071, 7.559055);
插入形状后如何以编程方式检索它的 X,Y 坐标?
谢谢!
I've managed to programatically insert a shape into Visio using the code below:
ActiveWindow.Page.Drop(VisioApp.Documents["ORGCH_M.VSS"].Masters.ItemU["Executive"], 5.433071, 7.559055);
How would i programatically retrieve it's X,Y coordinates after the shape has been inserted?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取新形状的坐标,首先获取对新形状的引用。 Page.Drop 将重新调整此引用。然后在该形状对象中查找其 PinX和 PinY 单元格。这将为您提供 Visio 默认单位(即英寸)的坐标。这是 VBA 中的一个示例:
我注意到您正在使用公制绘图(即文件名中的 _M)。您可能更喜欢在不同的单位工作。这是使用毫米的相同示例:
To get the coordinates of the new shape first get a reference to the new shape. Page.Drop will retun this reference. Then look in that shape object for its PinX and PinY cells. This will give you the coordinates in Visio's default units i.e. inches. Here is an example in VBA:
I notice you are working in a metric drawing (i.e. _M in the filename). You may prefer to work in a different unit. Here is the same example using millimeters: