WebPartManager.WebPartMoved Event
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.
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.