WebPartManagerInternals.SetHasUserData(WebPart, Boolean) Method

Definition

Sets a property on a WebPart or other server control indicating whether the control has user personalization data.

public:
 void SetHasUserData(System::Web::UI::WebControls::WebParts::WebPart ^ webPart, bool hasUserData);
public void SetHasUserData (System.Web.UI.WebControls.WebParts.WebPart webPart, bool hasUserData);
member this.SetHasUserData : System.Web.UI.WebControls.WebParts.WebPart * bool -> unit
Public Sub SetHasUserData (webPart As WebPart, hasUserData As Boolean)

Parameters

webPart
WebPart

A WebPart or other server control that can have user personalization data.

hasUserData
Boolean

A Boolean value that indicates whether webPart has shared data.

Remarks

The SetHasUserData method indicates whether webPart has individual user personalization data, as opposed to shared data. The method assigns the value of the hasUserData parameter to the webPart control's HasUserData property.

Applies to

See also