WebPart.ChromeState Property

Definition

Gets or sets whether a part control is in a minimized or normal state.

public:
 virtual property System::Web::UI::WebControls::WebParts::PartChromeState ChromeState { System::Web::UI::WebControls::WebParts::PartChromeState get(); void set(System::Web::UI::WebControls::WebParts::PartChromeState value); };
[System.Web.UI.WebControls.WebParts.Personalizable]
public override System.Web.UI.WebControls.WebParts.PartChromeState ChromeState { get; set; }
[<System.Web.UI.WebControls.WebParts.Personalizable>]
member this.ChromeState : System.Web.UI.WebControls.WebParts.PartChromeState with get, set
Public Overrides Property ChromeState As PartChromeState

Property Value

One of the PartChromeState values. The default is Normal.

Attributes

Exceptions

The value specified is not one of the PartChromeState values.

Remarks

A part control's ChromeState property value can be normal or minimized. The WebPart class overrides the base property so that end users can personalize it.

For a code example that uses this property, see the base ChromeState property.

Applies to

See also