WebPartManager.OnWebPartMoving(WebPartMovingEventArgs) Method

Definition

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

e
WebPartMovingEventArgs

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.

Applies to

See also