2013-02-08 3 views

Répondre

2

La propriété ShowAll est ce que vous cherchez.

Pour Activer:

ActiveWindow.ActivePane.View.ShowAll = True 

Pour désactiver:

ActiveWindow.ActivePane.View.ShowAll = False 

pour vérifier si les marques de paragraphe sont sur, et puis les désactiver:

If ActiveWindow.ActivePane.View.ShowAll = True Then 
    ActiveWindow.ActivePane.View.ShowAll = False 
End If