ScriptManagerProxy::Visible Property

 

Overrides the Visible property inherited from the base Control class to prevent setting this value.

Namespace:   System.Web.UI
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

public:
[BrowsableAttribute(false)]
property bool Visible {
	virtual bool get() override;
	virtual void set(bool value) override;
}

Property Value

Type: System::Boolean

true if the control is rendered on the page; otherwise, false.

Exception Condition
NotImplementedException

A value is assigned to the Visible property.

The Visible property is overridden in the ScriptManagerProxy class to prevent setting this property. The Visible property returns true unless it is inside a container, such as a UserControl whose Visible property is set to false.

.NET Framework
Available since 3.5
Return to top
Show: