Previous Document Next Document
Window.Refresh

Sub Refresh()

Member of Window

The Refresh method redraws a window, updating the window with the most recent information.

The following code example refreshes all of the 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 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.