La direzione del testo predefinita di PowerPoint è da destra a sinistra.
Come posso cambiarlo da sinistra a destra?
La direzione del testo predefinita di PowerPoint è da destra a sinistra.
Come posso cambiarlo da sinistra a destra?
Risposte:
Hai bisogno di un po 'di VBA per raggiungere questo obiettivo. Premi Alt+ F11per aprire l'editor VBA, seleziona il menu Inserisci> Modulo e incolla il seguente codice
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
Dopo tutto premere F5per eseguire.
Lo script sopra ripristina la direzione del testo di ogni casella di testo. Reimposta anche l'interfaccia se è attualmente da destra a sinistra in questo modo