This documentation is archived and is not being maintained.

WebPartManager::Visible Property

Gets a value that enables child controls to be visible.

Namespace:  System.Web.UI.WebControls.WebParts
Assembly:  System.Web (in System.Web.dll)

[BrowsableAttribute(false)]
[BindableAttribute(false)]
public:
virtual property bool Visible {
	bool get () override;
	void set (bool value) override;
}
<asp:WebPartManager Visible="True|False" />

Property Value

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

ExceptionCondition
NotSupportedException

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

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.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: