IShellDispatch.CascadeWindows 方法
串聯桌面上的所有視窗。 這個方法的效果與以滑鼠右鍵按一下工作列並選取 [ 串聯] 視窗相同。
語法
IShellDispatch.CascadeWindows()
IShellDispatch.CascadeWindows()
參數
這個方法沒有任何參數。
傳回值
JScript
這個方法不會傳回值。
VB
這個方法不會傳回值。
備註
此方法是透過 Shell.CascadeWindows 方法實作和存取。
範例
下列範例示範在 JScript、VBScript 和 Visual Basic 中使用 CascadeWindows 。
Jscript:
<script language="JScript">
function fnShellCascadeWindowsJ()
{
var objShell = new ActiveXObject("shell.application");
objshell.CascadeWindows();
}
</script>
VBScript:
<script language="VBScript">
function fnShellCascadeWindowsVB()
dim objShell
set objShell = CreateObject("shell.application")
objshell.CascadeWindows
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnShellCascadeWindowsVB()
Dim objShell As Shell
Set objShell = New Shell
objshell.CascadeWindows
Set objShell = Nothing
End Sub
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 |
Windows 2000 專業版、Windows XP [僅限傳統型應用程式] |
最低支援的伺服器 |
Windows 2000 Server [僅限傳統型應用程式] |
標頭 |
|
Idl |
|
DLL |
|