WebPartManager.OnWebPartMoving(WebPartMovingEventArgs) 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.
Raises the WebPartMoving event, which indicates that a WebPart or server or user control in a WebPartZoneBase zone is in the process of being moved.
protected:
virtual void OnWebPartMoving(System::Web::UI::WebControls::WebParts::WebPartMovingEventArgs ^ e);
protected virtual void OnWebPartMoving (System.Web.UI.WebControls.WebParts.WebPartMovingEventArgs e);
abstract member OnWebPartMoving : System.Web.UI.WebControls.WebParts.WebPartMovingEventArgs -> unit
override this.OnWebPartMoving : System.Web.UI.WebControls.WebParts.WebPartMovingEventArgs -> unit
Protected Overridable Sub OnWebPartMoving (e As WebPartMovingEventArgs)
Parameters
A WebPartMovingEventArgs that contains the event data.
Remarks
The OnWebPartMoving method raises the WebPartMoving event, which occurs when a WebPart or other server control is being moved within its zone or to another zone. The method also provides the opportunity to cancel the moving process. If the move is successfully completed, the WebPartMoved event follows.
Page developers can provide a custom handler for the associated event by adding the OnWebPartMoving
attribute to the <asp:webpartmanager>
element on a Web page, and then assigning a custom method name to the attribute.
Notes to Inheritors
Developers who create derived WebPartManager classes can override the OnWebPartMoving(WebPartMovingEventArgs) method to customize the event handling.