NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ComponentDesigner.Verbs

Gets the design-time verbs supported by the component associated with the designer. The verbs returned by this method are typically displayed in a right-click menu by the design-time environment. The return value may be null if the component has no design-time verbs. When a user selects one of the verbs, the performVerb() method is invoked with the the corresponding DesignerVerb object. NOTE: A design-time environment will typically provide a "Properties..." entry on a component's right-click menu. The getVerbs() method should therefore not include such an entry in the returned list of verbs.

[Visual Basic]
Overridable Public ReadOnly Property Verbs As DesignerVerb ()
[C#]
public DesignerVerb[] Verbs {virtual get;}
[C++]
public: __property virtual DesignerVerb* get_Verbs();
[JScript]
public function get Verbs() : DesignerVerb[];

Property Value

An array of design-time verb objects. This default implementation always returns null.

See Also

ComponentDesigner Class | ComponentDesigner Members | System.ComponentModel.Design Namespace | IDesigner