如何使用 VB.net 将形状放入 VISIO 中的形状内

发布于 2024-10-26 01:15:24 字数 56 浏览 2 评论 0原文

我使用机架安装设备(美国单位).VSS 作为模板。我需要连接机架上的服务器。请尽快给出答复...!

I am using Rack-mounted Equipment (US units).VSS as stencil. I need to Connect a server on Rack. Please give an answer its urget...!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

孤檠 2024-11-02 01:15:24

好友 WithEvents AxDC 作为 AxMicrosoft.Office.Interop.VisOcx.AxDrawingControl

currentPage = AxDC.Document.Pages(1)
currentStencil = AxDC.Document.Application.Documents.OpenEx(File_name,VisOpenSaveArgs.visOpenDocked)

Dim shapeRack As Microsoft.Office.Interop.Visio.Shape = currentPage.Drop(currentStencil.Masters("Rack"), 1, 6)

Dim shapeSrver As Microsoft.Office.Interop.Visio.Shape = .Drop(currentStencil.Masters(“Server”), 0, 0)

''这是代码...!

shapeSrver.Cells("BeginX").GlueTo(shapeRack.CellsSRC(7, 0, 0))

shapeSrver.Cells("EndX").GlueTo(shapeRack.CellsSRC(7, 1, 0))

Friend WithEvents AxDC As AxMicrosoft.Office.Interop.VisOcx.AxDrawingControl

currentPage = AxDC.Document.Pages(1)
currentStencil = AxDC.Document.Application.Documents.OpenEx(File_name,VisOpenSaveArgs.visOpenDocked)

Dim shapeRack As Microsoft.Office.Interop.Visio.Shape = currentPage.Drop(currentStencil.Masters("Rack"), 1, 6)

Dim shapeSrver As Microsoft.Office.Interop.Visio.Shape = .Drop(currentStencil.Masters(“Server”), 0, 0)

''Here is the code...!

shapeSrver.Cells("BeginX").GlueTo(shapeRack.CellsSRC(7, 0, 0))

shapeSrver.Cells("EndX").GlueTo(shapeRack.CellsSRC(7, 1, 0))

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