如何使用VBA纠正Powerpoint中的wordart

时间:2012-02-09 10:04:43

标签: vba powerpoint powerpoint-vba

我正在使用PowerPoint 2007.我想使用VBA纠正wordart。整改可能涉及对齐,调整大小等。

请建议我怎么做。

1 个答案:

答案 0 :(得分:0)

以下是一个例子:

With ActivePresentation.Slides(1).Shapes(1)
    .ScaleWidth 1.38, msoFalse, msoScaleFromBottomRight
    .TextEffect.Text = "Your Text Here again"
    .IncrementRotation -15#
End With

以上假设您的Wordart是幻灯片1中唯一的形状。

更多信息,请尝试录制宏并查看生成的代码。