System.Web
2.0.0.0
System.EventArgs
The class represents the event data for the event, which occurs when the Web Parts verbs are created for a zone that derives from the 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 property.
A 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 base class and overriding the property. If the control does not inherit from the base class, you can add a new verb by implementing the interface, and then overriding the collection.
The protected method allows derived classes to override the event without attaching a delegate to it. A derived class must always call the method of the base class to ensure that registered delegates receive the event.
Provides event data for the event that is used by the method.
Constructor
This is the default constructor and it creates an empty object.
Initializes a new instance of the class.
2.0.0.0
Constructor
When using this constructor, the property is set to the Web Parts verb collection specified in the parameter.
Initializes a new instance of the class using the specified Web Parts verb collection.
A Web Parts verb collection.
2.0.0.0
Property
System.Web.UI.WebControls.WebParts.WebPartVerbCollection
To be added.
Initially, this property is set by specifying a Web Parts verb collection in the constructor.
Gets or sets the Web Parts verbs used in the event data.
2.0.0.0