RecalcHyperlinks Method

       

Recalculates all meta data on the server for this web. This operation will rebuild FrontPage’s knowledge of all hyperlinks, titles for web pages, themes on pages, and so on.

Note   This operation may take a long time to complete depending on the amount of meta data on the server.

expression.RecalcHyperlinks

expression   An expression that returns a WebEx object.

Example

This example recalculates the hyperlinks for the active web.

Private Sub RecalcLinks()
    Dim myWeb As WebEx

    Set myWeb = Application.ActiveWeb

    myWeb.RecalcHyperlinks
End Sub