Visible Property

The Visible property specifies whether a control is visible or invisible to an end user.

Note: This property can conflict with tab order.

You can also set this property using a Cascading Style Sheet. For more information, see Using Cascading Style Sheets.

Applies to: All controls.

Setting dynamically:

Winform Set form.control.VISIBLE TO {0|1};

Property Settings:

0 - No

Hides control from the end user.

1 - Yes

Makes controls visible to the end user (default).

Setting dynamically using JavaScript or VBScript:

document.Forname.Controlname.style.visible="{true|false}";

WebFOCUS