HIDE_ALL

HIDE_ALL

REND INVISIBLE TOUS LES OBJET SYSTÈMES

  • Type: Commande
  • Paramètre: 0
  • Groupe: Objets Système

ACTION

La commande HIDE_ALL rend invisibles tous les objets système.

SYNTAXE : HIDE_ALL

UTILISATION

  • La commande HIDE_ALL est utilisée pour rendre invisible tous les objets système.
  • La commande HIDE_ALL a une commande inverse : SHOW_ALL.

ERREUR

  • Rien.

EXEMPLE

rem créer 10 BUTTONs

dim i%

for i%=1 to 10

button i%:caption i%,"Button "+str$(i%)

left i%,20*i%:top i%,20*i%

next i%

rem attendre 1 seconde

wait 1000

rem les cacher

hide_all

rem attendre 1 seconde

wait 1000

rem les montrer à nouveau

show_all

EN RAPPORT

HIDE

SHOW

HIDE()

SHOW()