Refresh Method

       

Refresh method as it applies to the WebEx object.

 Refreshes the specified WebEx object.

expression.Refresh(FetchAll)

expression   Required. An expression that returns one of the above objects.

FetchAll  Optional Boolean. True to retrieve all information for all documents regardless of view. When set to False this argument retrieves only the information necessary to support the current view. However, if Reports or Hyperlink view is open, False refreshes all documents. Default is False.

Refresh method as it applies to the PageWindowEx object.

Refreshes the specified PageWindowEx object with an option to save changes.

expression.Refresh(SaveChanges)

expression   Required. An expression that returns one of the above objects.

SaveChanges  Optional Boolean. True to save changes.

Example

The following statements refresh the active page window and the first page window of the first web.

ActivePageWindow.Refresh
WebWindows(0).PageWindows(0).Refresh

you can use the following statement to save any changes you may have made to the page.

ActivePageWindow.Refresh(True)

You can use the following statements to refresh the active web and the first web.

ActiveWeb.Refresh
Webs(0).Refresh