gpt4 book ai didi

vba - 如何使用 VBA 检索 Visio 自定义形状信息

转载 作者:行者123 更新时间:2023-12-04 18:00:03 24 4
gpt4 key购买 nike

使用 VBA,如何从 Visio 2003 图表中检索自定义形状信息。

最佳答案

从 Visio 形状获取自定义形状信息:

Function GetCustomPropertyValue(TheShape As Visio.Shape, ThePropertyName As String) As String
On Error Resume Next
GetCustomPropertyValue = TheShape.CellsU("Prop." & ThePropertyName).ResultStr(visNone)
End Function

这个函数所做的就是使用形状上的 cellsu 属性来按名称获取自定义属性 ShapeSheet 单元格...

如果您是接下来使用 on error resume 的坚持者,您可以通过首先检查单元格是否存在来检查单元格是否存在:
if TheShape.CellExistsU( "Prop." & ThePropertyName , 0 ) then
GetCustomPropertyValue = TheShape.CellsU("Prop." & THePropertyName).ResultStr(VisNone)

关于vba - 如何使用 VBA 检索 Visio 自定义形状信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/507409/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com