如何在 VSTO Addin 中获取箭头线的大小?

发布于 2025-01-10 18:24:10 字数 385 浏览 0 评论 0原文

我们正在开发一个 Powerpoint VSTO 插件,需要以编程方式计算 Powerpoint 中箭头的实际宽度和高度。 我们的代码可能如下所示:

freeFormShape.Line.EndArrowheadStyle = MsoArrowheadStyle.msoArrowheadTriangle;
freeFormShape.Line.EndArrowheadLength = MsoArrowheadLength.msoArrowheadShort;
freeFormShape.Line.EndArrowheadWidth = MsoArrowheadWidth.msoArrowheadNarrow;

有什么方法可以知道末端箭头三角形的大小(以磅为单位)?

谢谢

We are developing a Powerpoint VSTO Addin and need to programmatically calculate the real width and height of an Arrowhead in Powerpoint.
Our code may look like below:

freeFormShape.Line.EndArrowheadStyle = MsoArrowheadStyle.msoArrowheadTriangle;
freeFormShape.Line.EndArrowheadLength = MsoArrowheadLength.msoArrowheadShort;
freeFormShape.Line.EndArrowheadWidth = MsoArrowheadWidth.msoArrowheadNarrow;

Is there any way to know the size of End arrowhead triangle in points?

Thank you

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

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

发布评论

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

评论(1

一杯敬自由 2025-01-17 18:24:10

尝试使用 LineFormat.Weight 属性返回或设置指定线条的粗细(以磅为单位)。

Try using the LineFormat.Weight property which returns or sets the thickness of the specified line, in points.

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