Méthode IShellDispatch.UndoMinimizeALL
Restaure toutes les fenêtres de bureau à l’état dans lequel elles se trouvaient avant la dernière commande MinimizeAll . Cette méthode a le même effet que de cliquer avec le bouton droit sur la barre des tâches et de sélectionner Annuler réduire toutes les fenêtres Windows (sur des systèmes plus anciens) ou d’un deuxième clic sur l’icône Afficher le Bureau dans la barre des tâches.
Syntaxe
IShellDispatch.UndoMinimizeALL()
IShellDispatch.UndoMinimizeALL()
Paramètres
Cette méthode n’a aucun paramètre.
Valeur retournée
JScript
Cette méthode ne retourne pas de valeur.
VB
Cette méthode ne retourne pas de valeur.
Notes
Cette méthode est implémentée et accessible via la méthode Shell.UndoMinimizeAll .
Exemples
Les exemples suivants montrent l’utilisation de UndoMinimizeALL dans JScript, VBScript et Visual Basic.
Jscript:
<script language="JScript">
function fnShellUndoMinimizeALLJ()
{
var objShell = new ActiveXObject("shell.application");
objshell.UndoMinimizeALL();
}
</script>
Vbscript:
<script language="VBScript">
function fnShellUndoMinimizeALLVB()
dim objShell
set objShell = CreateObject("shell.application")
objshell.UndoMinimizeALL
set objShell = nothing
end function
</script>
Visual Basic :
Private Sub fnShellUndoMinimizeAllVB()
Dim objShell As Shell
Set objShell = New Shell
objshell.UndoMinimizeALL
Set objShell = Nothing
End Sub
Spécifications
Condition requise | Valeur |
---|---|
Client minimal pris en charge |
Windows 2000 Professionnel, Windows XP [applications de bureau uniquement] |
Serveur minimal pris en charge |
Windows 2000 Server [applications de bureau uniquement] |
En-tête |
|
IDL |
|
DLL |
|