Pregunta

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.

¿Fue útil?

Solución

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 bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top