Raised when a URL is being constructed for one of the hyperlinks that is rendered by this control.

Namespace:  Endeca.Web.UI.WebControls
Assembly:  Endeca.Web.UI.WebControls (in Endeca.Web.UI.WebControls.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
public event EventHandler<TagCloudUrlEventArgs> BuildingUrl
Visual Basic (Declaration)
Public Event BuildingUrl As EventHandler(Of TagCloudUrlEventArgs)
Visual C++
public:
 event EventHandler<TagCloudUrlEventArgs^>^ BuildingUrl {
	void add (EventHandler<TagCloudUrlEventArgs^>^ value);
	void remove (EventHandler<TagCloudUrlEventArgs^>^ value);
}

Remarks

When this control has been configured with a UrlManager, be setting the UrlManagerId property, hyperlinks are rendered instead of links that post back to the current page. Handling this event allows a page developer to override the default URLs that are generated by the UrlManager. If the handler sets the Url property, then this control renders the value of this property, instead of the default URL.

See Also