Home >Common Problem >What does visible mean in VB
Visible in VB means visible. In VB, all controls with interfaces have the visible attribute, which means they are invisible or not displayed. Visual Basic (VB for short) is a general-purpose, object-based programming language developed by Microsoft.
#What does visible in VB mean?
Visible in VB means visible. visible has this attribute on all controls with interfaces.
In layman's terms, it means invisible or visible.
For example:
text1.visible=false '把text1隐藏起来
You can add in the button's CLICK event:
text1.visible=true'于是text1又重新显出。
The above is the detailed content of What does visible mean in VB. For more information, please follow other related articles on the PHP Chinese website!