WebPart.CreateEditorParts Method

Definition

Returns a collection of custom EditorPart controls that can be used to edit a WebPart control when it is in edit mode.

C#
public virtual System.Web.UI.WebControls.WebParts.EditorPartCollection CreateEditorParts();

Returns

An EditorPartCollection that contains custom EditorPart controls associated with a WebPart control.

Implements

Remarks

Developers can use this method to create instances of custom EditorPart controls that they want to associate with a WebPart control. The method is called when a user clicks the edit verb on a WebPart control.

Napomena

Any new instance of an EditorPart control that is created in this method must have a value assigned to its ID property before it can be added to the EditorParts collection.

For a code example that uses the CreateEditorParts method, see the EditorPart class overview.

Applies to

Proizvod Verzije
.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