Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Tiles all of the windows on the desktop vertically. This method has the same effect as right-clicking the taskbar and selecting Show windows side by side.
Syntax
IShellDispatch.TileVertically()
IShellDispatch.TileVertically()
Parameters
This method has no parameters.
Return value
JScript
This method does not return a value.
VB
This method does not return a value.
Remarks
This method is implemented and accessed through the Shell.TileVertically method.
Examples
The following examples show the use of TileVertically in JScript, VBScript, and 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
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client |
Windows 2000 Professional, Windows XP [desktop apps only] |
| Minimum supported server |
Windows 2000 Server [desktop apps only] |
| Header |
|
| IDL |
|
| DLL |
|