WebPartManager.Visible Property

Definition

Gets a value that enables child controls to be visible.

public:
 virtual property bool Visible { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(false)]
[System.ComponentModel.Browsable(false)]
public override bool Visible { get; set; }
[<System.ComponentModel.Bindable(false)>]
[<System.ComponentModel.Browsable(false)>]
member this.Visible : bool with get, set
Public Overrides Property Visible As Boolean

Property Value

A Boolean value that indicates whether a WebPartManager control and its child controls are visible. true in all cases.

Attributes

Exceptions

An attempt was made to assign a value to the property.

Remarks

The WebPartManager control overrides the base Control.Visible property to always return a value of true for the Visible property. Even though the WebPartManager control itself is not visible, the Visible property needs to be set to true so that all its child controls are visible by default.

If you try to set the value of the Visible property, it always generates an error because the WebPartManager control has overridden the base property behavior and prevents assigning any value to the property.

This property is not bindable in visual designers, but is bindable at runtime. For more information, see BindableAttribute.

Applies to