EditorZoneBase.WebPartToEdit Property

Definition

Gets a reference to the WebPart control that is currently being edited.

protected:
 property System::Web::UI::WebControls::WebParts::WebPart ^ WebPartToEdit { System::Web::UI::WebControls::WebParts::WebPart ^ get(); };
protected System.Web.UI.WebControls.WebParts.WebPart WebPartToEdit { get; }
member this.WebPartToEdit : System.Web.UI.WebControls.WebParts.WebPart
Protected ReadOnly Property WebPartToEdit As WebPart

Property Value

A WebPart that is currently in edit mode.

Remarks

Only one WebPart control can be edited at a time, and when a control is in edit mode, the WebPartToEdit property provides a reference to that control. The control referenced is the same as the control that is referenced by the SelectedWebPart property. Therefore, a control that is currently being edited is always currently selected.

Notes to Inheritors

The protected WebPartToEdit property is accessible only in derived classes, which can call this property on the base EditorZoneBase class to get an object reference to the current control being edited.

Applies to

See also