Powerpoint 中的 VBA 格式化文本框

发布于 2024-12-11 21:51:31 字数 157 浏览 0 评论 0原文

我正在努力找出如何通过 VBA 垂直对齐文本框。

此外,在研究Powerpoint的自动调整功能时,我发现了很多帖子,说这只能在注册表中更改,但在我的电脑上,有些模板会自动调整,有些不会。,有什么方法可以关闭它在VBA中创建占位符时?

帮助

感谢塞巴的

I am struggling to find out how to vertically align textboxes via VBA.

Furthermore, when researching the Autofit feature of Powerpoint, I found quite some posts, that said this can only be changed in the registry, but on my PC, some templates autofit and some don't., Is there some way to turn it off when creating the placeholders in VBA?

Thanks for the help

seba

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

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

发布评论

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

评论(1

ゃ懵逼小萝莉 2024-12-18 21:51:31

对于具有文本框架(即可以包含文本)的形状,可以打开/关闭自动调整:

假设在 oSh 中引用了形状,

oSh.TextFrame.AutoSize = ppAutoSizeNone ' or ppAutoSizeShapeToFitText
' 0 or 1 respectively

AutoFit can be turned on/off for shapes that have text frames (ie, that can contain text):

Assuming a reference to the shape in oSh,

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