WebPartVerbsEventArgs Class

Definition

Provides event data for the CreateVerbs event that is used by the OnCreateVerbs(WebPartVerbsEventArgs) method.

public ref class WebPartVerbsEventArgs : EventArgs
public class WebPartVerbsEventArgs : EventArgs
type WebPartVerbsEventArgs = class
    inherit EventArgs
Public Class WebPartVerbsEventArgs
Inherits EventArgs
Inheritance
WebPartVerbsEventArgs

Remarks

The WebPartVerbsEventArgs class represents the event data for the CreateVerbs event, which occurs when the Web Parts verbs are created for a zone that derives from the WebPartZoneBase class.

Web Parts verbs represent actions that users can perform in the user interface (UI) of a Web Parts page, such as minimizing, closing, or restoring controls; adding controls to a page; or canceling an action. Verbs can appear in both the header and footer areas of a zone, and there are both standard verbs provided with the Web Parts control set, and custom verbs that can be added by developers. A verb is represented in the UI by a clickable object, which you can set to appear as a hyperlink, an image, or a button, by using the VerbButtonType property.

A WebPartZone zone provides a standard set of verbs that get rendered in a Web Parts control's verbs menu. A custom Web Parts zone, or a Web Parts control inside a Web Parts zone, can add additional verbs to the menu.

A control in a Web Parts zone can add verbs to the control's verbs menu by inheriting from the WebPart base class and overriding the Verbs property. If the control does not inherit from the WebPart base class, you can add a new verb by implementing the IWebActionable interface, and then overriding the Verbs collection.

The protected WebPartZoneBase.OnCreateVerbs method allows derived classes to override the event without attaching a delegate to it. A derived class must always call the OnCreateVerbs method of the base class to ensure that registered delegates receive the event.

Constructors

WebPartVerbsEventArgs()

Initializes a new instance of the WebPartVerbsEventArgs class.

WebPartVerbsEventArgs(WebPartVerbCollection)

Initializes a new instance of the WebPartVerbsEventArgs class using the specified Web Parts verb collection.

Properties

Verbs

Gets or sets the Web Parts verbs used in the event data.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also