Home  >  Article  >  What does visible mean in VB

What does visible mean in VB

藏色散人
藏色散人Original
2019-05-07 10:13:1116497browse

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 mean in VB

#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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What is the handle?Next article:What is the handle?