Object Model Reference : Classes : W : Window : Methods : Window.Refresh |
Sub Refresh()
Member of Window
The Refresh method redraws a window, updating it with the most recent information.
The following VBA example refreshes all windows in the Windows collection of the active document.
Sub Test() |
Dim Wnd As Window |
For Each Wnd In ActiveDocument.Windows |
Wnd.Refresh |
Next Wnd |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.