Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WebPartManager::WebPartMoved Event

 

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

Namespace:   System.Web.UI.WebControls.WebParts
Assembly:  System.Web (in System.Web.dll)

public:
event WebPartEventHandler^ WebPartMoved {
	void add(WebPartEventHandler^ value);
	void remove(WebPartEventHandler^ value);
}

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.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft