Share via


Web.OnRecalculateHyperlinks Event

SharePoint Designer Developer Reference

Occurs before the hyperlink structure in Hyperlinks view is recalculated to view changes made to the Web site.

Syntax

Private Sub expression_OnRecalculateHyperlinks(ByVal pWeb As Web, Cancel As Boolean)

expression   A variable that represents a Web object that has been declared byusing the WithEvents option in a class module.

Parameters

Name Required/Optional Data Type Description
pWeb Required Web The Web site for which to recalculate hyperlinks.
Cancel Required Boolean Determines whether the event should be cancelled. If False, the event is not cancelled. If True, the event is cancelled.

See Also