Método IShellDispatch.TileVertically
Muestra todas las ventanas del escritorio verticalmente. Este método tiene el mismo efecto que hacer clic con el botón derecho en la barra de tareas y seleccionar Mostrar ventanas en paralelo.
Sintaxis
IShellDispatch.TileVertically()
IShellDispatch.TileVertically()
Parámetros
Este método no tiene parámetros.
Valor devuelto
JScript
Este método no devuelve ningún valor.
VB
Este método no devuelve ningún valor.
Comentarios
Este método se implementa y se accede a través del método Shell.TileVertically .
Ejemplos
En los ejemplos siguientes se muestra el uso de TileVertically en JScript, VBScript y Visual Basic.
Jscript:
<script language="JScript">
function fnShellTileVerticallyJ()
{
var objShell = new ActiveXObject("shell.application");
objshell.TileVertically();
}
</script>
Vbscript:
<script language="VBScript">
function fnShellTileVerticallyVB()
dim objShell
set objShell = CreateObject("shell.application")
objshell.TileVertically
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnShellTileVerticallyVB()
Dim objShell As Shell
Set objShell = New Shell
objshell.TileVertically
Set objShell = Nothing
End Sub
Requisitos
Requisito | Value |
---|---|
Cliente mínimo compatible |
Windows 2000 Professional, Windows XP [solo aplicaciones de escritorio] |
Servidor mínimo compatible |
Windows 2000 Server [solo aplicaciones de escritorio] |
Encabezado |
|
IDL |
|
Archivo DLL |
|