Pergunta

Is there a way to turn off the paragraph marks if they are turned on?

I searched online and did not find anything except ways to check if they are on or off.

Foi útil?

Solução

The ShowAll Property is what you're looking for.

To Turn On:

ActiveWindow.ActivePane.View.ShowAll = True

To Turn Off:

ActiveWindow.ActivePane.View.ShowAll = False

To Check if Paragraph Marks are on, and to then turn them off:

If ActiveWindow.ActivePane.View.ShowAll = True Then
    ActiveWindow.ActivePane.View.ShowAll = False
End If
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top