2013-02-08 48 views

回答

2

ShowAll属性是你在找什么。

开启:

ActiveWindow.ActivePane.View.ShowAll = True 

关掉:

ActiveWindow.ActivePane.View.ShowAll = False 

检查,如果段落标记上,并随后将其关闭:

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