Application.OnRecalculateHyperlinks Event

SharePoint Designer Developer Reference

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

Syntax

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

expression   A variable that represents an Application object that has been declared by using the WithEvents option in a class module.

Parameters

Name Required/Optional Data Type Description
pWeb Required Web The Web site that contains the view.
Cancel Required Boolean Cancels the event. If False, the event is not canceled. If True, the event is canceled.

See Also