Previous Document Next Document

Object Model Reference : Classes : W : Window : Methods : Window.Refresh


Window.Refresh

Sub Refresh()

Description

Member of Window

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

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.