ShellWindows._NewEnum-Methode

Erstellt und gibt ein neues ShellWindows-Objekt zurück, das eine Kopie dieses ShellWindows-Objekts ist.

Syntax

retVal = ShellWindows._NewEnum()

Parameter

Diese Methode hat keine Parameter.

Rückgabewert

Typ: IUnknown**

Ein Objektverweis auf die ShellWindows-Objektkopie .

Beispiele

Das folgende Beispiel zeigt _NewEnum in Verwendung. Die ordnungsgemäße Verwendung wird für VBScript und Visual Basic angezeigt. Diese Methode kann nicht mit JScript verwendet werden.

Vbscript:

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

        if (not objShellWindows is nothing) then
            dim objEnumItems
            
            for each objEnumItems in objShellWindows
                alert(objEnumItems.Type)
            next
        end if

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

Visual Basic:

Private Sub fnShellWindowsNewEnumVB()
    Dim objShell        As Shell
    Dim objShellWindows As ShellWindows
    
    Set objShell = New Shell
    Set objShellWindows = objshell.Shell_Windows

    If (Not objShellWindows Is Nothing) Then
        Dim vEnumItem As Variant
        
        For Each vEnumItem In objShellWindows
            Debug.Print vEnumItem.Type
        Next vEnumItem
    End If

    Set objShellWindows = Nothing
    Set objShell = Nothing
End Sub

Anforderungen

Anforderung Wert
Unterstützte Mindestversion (Client)
Windows 2000 Professional, Windows XP [nur Desktop-Apps]
Unterstützte Mindestversion (Server)
Windows 2000 Server [nur Desktop-Apps]
Header
Exdisp.h
DLL
Shell32.dll (Version 4.71 oder höher)