WebPart.CreateEditorParts Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a collection of custom EditorPart controls that can be used to edit a WebPart control when it is in edit mode.
public:
virtual System::Web::UI::WebControls::WebParts::EditorPartCollection ^ CreateEditorParts();
public virtual System.Web.UI.WebControls.WebParts.EditorPartCollection CreateEditorParts ();
abstract member CreateEditorParts : unit -> System.Web.UI.WebControls.WebParts.EditorPartCollection
override this.CreateEditorParts : unit -> System.Web.UI.WebControls.WebParts.EditorPartCollection
Public Overridable Function CreateEditorParts () As EditorPartCollection
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.
Note
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.