View.Visible Property

Gets or sets a value that indicates whether the View control is visible.

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

public:
virtual property bool Visible {
	bool get () override;
	void set (bool value) override;
}
/** @property */
public boolean get_Visible ()

/** @property */
public void set_Visible (boolean value)

public override function get Visible () : boolean

public override function set Visible (value : boolean)

Not applicable.

Property Value

true if the View control is visible; otherwise, false. The default value is false.

Exception typeCondition

InvalidOperationException

An attempt was made to set this property at run time.

Use the Visible property to determine whether the current View control is visible and rendered to the client. For a View control to be visible on the rendered page, it must be the active view in its containing MultiView control, and the containing MultiView control must be visible. If the containing MultiView control is not visible on the page, or if the View control is not the active view, then the View control and its child controls are not rendered.

NoteNote:

The Visible property is set internally based on the visibility and active view for the containing parent control. If you set this property at run time, an InvalidOperationException exception is thrown. If you set the Visible property at design time, any changes to the property are ignored.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: