IShellDispatch.Windows 方法

创建并返回 ShellWindows 对象。 此对象表示属于 Shell 的所有打开窗口的集合。

语法

retVal = IShellDispatch.Windows()

IShellDispatch.Windows() As IDispatch

参数

此方法没有任何参数。

返回值

JScript

类型: IDispatch**

ShellWindows 对象的对象引用。

VB

类型: IDispatch**

ShellWindows 对象的对象引用。

备注

此方法通过 Shell.Windows 方法实现和访问。

示例

以下示例使用 Windows 检索 ShellWindows 对象并显示其包含的项数的计数。 显示 JScript、VBScript 和 Visual Basic 的用法。

Jscript:

<script language="JScript">
    function fnShellWindowsJ()
    {
        var objShell = new ActiveXObject("shell.application");
        var objShellWindows;
        
        objShellWindows = objshell.Windows();

        if (objShellWindows != null)
        {
            alert(objShellWindows.Count);
        }
    }
</script>

VBScript:

<script language="VBScript">
    function fnShellWindowsVB()
        dim objShell
        dim objShellWindows
        
        set objShell = CreateObject("shell.application")
        set objShellWindows = objshell.Windows

        if (not objShellWindows is nothing) then
            alert(objShellWindows.Count)
        end if

        set objShellWindows = nothing
        set objShell = nothing
    end function
 </script>

Visual Basic:

Private Sub fnShellWindowsVB()
    Dim objShell        As Shell
    Dim objShellWindows As ShellWindows
    
    Set objShell = New Shell
    Set objShellWindows = objshell.Windows

    If (Not objShellWindows Is Nothing) Then
        Debug.Print objShellWindows.Count
    End If

    Set objShellWindows = Nothing
    Set objShell = Nothing
End Sub

要求

要求
最低受支持的客户端
Windows 2000 专业版、Windows XP [仅限桌面应用]
最低受支持的服务器
Windows 2000 Server [仅限桌面应用]
标头
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (版本 4.71 或更高版本)