CatalogZoneBase.RenderVerbs(HtmlTextWriter) Method

Definition

Renders the verbs in the footer area of a CatalogZoneBase zone.

C#
protected override void RenderVerbs(System.Web.UI.HtmlTextWriter writer);

Parameters

writer
HtmlTextWriter

An HtmlTextWriter that renders the verbs for the zone.

Remarks

The RenderVerbs method renders the add verb and the close verb within the footer area of a CatalogZoneBase zone.

Notes to Inheritors

The RenderVerbs(HtmlTextWriter) method does not handle the rendering for any custom WebPartVerb objects that a developer adds to a custom CatalogZoneBase zone. If you want to add custom verbs to a CatalogZoneBase class, you must inherit from the CatalogZoneBase class, and override the RenderVerbs(HtmlTextWriter) method, which you can use to render the custom verbs for your zone. You must also override the RaisePostBackEvent(String) method to handle the event when a custom verb is clicked by a user.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also