WebPartManager.SetSelectedWebPart(WebPart) Method

Definition

Sets the SelectedWebPart property value equal to the currently selected WebPart or server control.

protected:
 void SetSelectedWebPart(System::Web::UI::WebControls::WebParts::WebPart ^ webPart);
protected void SetSelectedWebPart (System.Web.UI.WebControls.WebParts.WebPart webPart);
member this.SetSelectedWebPart : System.Web.UI.WebControls.WebParts.WebPart -> unit
Protected Sub SetSelectedWebPart (webPart As WebPart)

Parameters

webPart
WebPart

A WebPart or server control that has been selected.

Remarks

The SetSelectedWebPart method is called during the processes that begin or end editing of the control specified by the webPart parameter, and those that begin or end a connection that includes webPart.

At the beginning of the edit and connection processes, webPart is the control that has been selected to be edited or to enter a connection.

At the end of the edit and connection processes, null is passed to the SetSelectedWebPart method, which results in the currently selected control no longer being selected.

Applies to

See also