我的PowerPoint的默认文本方向是从右到左。
如何从左到右更改?
我的PowerPoint的默认文本方向是从右到左。
如何从左到右更改?
Answers:
你需要一些VBA来实现这一目标。按Alt+ F11打开VBA编辑器,选择菜单插入>模块并粘贴以下代码
Sub ResetLeftToRight()
Dim oSh As Shape
Dim oSl As Slide
' make sure slide sorter reads left to right
ActivePresentation.LayoutDirection = ppDirectionLeftToRight
' then fix each of the text boxes
For Each oSl In ActivePresentation.Slides
For Each oSh In oSl.Shapes
On Error Resume Next
If oSh.HasTextFrame Then
If oSh.TextFrame.HasText Then
WIth oSh.TextFrame.TextRange.ParagraphFormat
.TextDirection = ppDirectionLeftToRight
End With
End If
End If
Next ' shape
Next ' slide
End Sub
毕竟按下F5运行。
上面的脚本重置每个文本框的文本方向。它也会重置接口,如果它当前是从右到左这样的话