Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在运行时插入一个圆角矩形标注类型,最初它的指针方向是向下的。如果我使用检查它的值
shp.Adjustments.Item(1)
代码然后它显示它的值 -0.20833
我想将它的方向改变为向上。我录制了一个宏来调整它并得到了这个代码
Selection.ShapeRange.Adjustments.Item(1) = -0.20223
但它的方向仍然是向下的。请帮助将其方向设置为向上。
我建议在 y 轴上将形状旋转 180 度。这会旋转形状,但正如您所注意到的,它也会旋转文本,这可能是不可取的。
shp.ShapeRange.ThreeD.RotationY = -180
如果您只是想从标注调整指针,这是Item(2). 当我创建一个形状时,它的值如下:
Item(2)
shp.Adjustments.Item(2) = 0.625
要反转其位置,使其位于矩形的顶部,请将其更改为:
shp.Adjustments.Item(2) = -0.625