Como alterar a direção do texto padrão no Power Point 2010

1

A direção de texto padrão do meu Power Point é da direita para a esquerda.

Como posso alterá-lo da esquerda para a direita?

    
por user1264304 20.10.2013 / 13:37

1 resposta

0

Você precisa de algum VBA para conseguir isso. Pressione Alt + F11 para abrir o editor do VBA, selecione o menu Inserir > Módulo e cole o seguinte código

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

Afinal, pressione F5 para executar.

O script acima redefine a direção do texto de cada caixa de texto. Ele também redefine a interface se estiver atualmente da direita para a esquerda como este

    
por 20.10.2013 / 15:04