WebPartManager.WebPartMoved Event

Definition

Occurs after a WebPart or server control has been moved to a different location on a Web page.

public:
 event System::Web::UI::WebControls::WebParts::WebPartEventHandler ^ WebPartMoved;
public event System.Web.UI.WebControls.WebParts.WebPartEventHandler WebPartMoved;
member this.WebPartMoved : System.Web.UI.WebControls.WebParts.WebPartEventHandler 
Public Custom Event WebPartMoved As WebPartEventHandler 

Event Type

Remarks

This event applies to both static (declared in the markup of a Web page) and dynamic controls. It is associated with the OnWebPartMoved method. Because the event is raised after a move is complete, developers can include an event handler to provide some notification to users, some validation, or some other actions. To add an event handler, you can add an OnWebPartMoved attribute to the <asp:webpartmanager> element in a page, and assign the name of a custom method to the attribute.

Applies to

See also