WebPartPersonalization.CopyPersonalizationState(WebPart, WebPart) Method

Definition

Extracts the personalization state from one Web Parts control and applies it to a second Web Parts control.

protected public:
 virtual void CopyPersonalizationState(System::Web::UI::WebControls::WebParts::WebPart ^ webPartA, System::Web::UI::WebControls::WebParts::WebPart ^ webPartB);
protected internal virtual void CopyPersonalizationState (System.Web.UI.WebControls.WebParts.WebPart webPartA, System.Web.UI.WebControls.WebParts.WebPart webPartB);
abstract member CopyPersonalizationState : System.Web.UI.WebControls.WebParts.WebPart * System.Web.UI.WebControls.WebParts.WebPart -> unit
override this.CopyPersonalizationState : System.Web.UI.WebControls.WebParts.WebPart * System.Web.UI.WebControls.WebParts.WebPart -> unit
Protected Friend Overridable Sub CopyPersonalizationState (webPartA As WebPart, webPartB As WebPart)

Parameters

webPartA
WebPart

The Web Parts control supplying the personalization data.

webPartB
WebPart

The Web Parts control receiving the personalization data.

Exceptions

Either webPartA or webPartB is null.

webPartA and webPartB are not of the same Type.

-or-

webPartA and webPartB are GenericWebPart controls but one or both lack a child control.

-or-

webPartA and webPartB are GenericWebPart controls, but their child controls are not of the same Type.

Remarks

This method extracts the personalization state from webPartA and applies it to webPartB. This method assumes that webPartA and webPartB are the same type. If the Web Parts controls are GenericWebPart controls, the method copies the personalization state from the child control wrapped in webPartA to the child control wrapped in webPartB.

As part of the copy operation, webPartB is marked as "dirty".

Applies to

See also