Compartir a través de


método ShellWindows._NewEnum

Crea y devuelve un nuevo objeto ShellWindows que es una copia de este objeto ShellWindows .

Sintaxis

retVal = ShellWindows._NewEnum()

Parámetros

Este método no tiene parámetros.

Valor devuelto

Tipo: IUnknown**

Referencia de objeto a la copia del objeto ShellWindows .

Ejemplos

En el ejemplo siguiente se muestra _NewEnum en uso. Se muestra un uso adecuado para VBScript y Visual Basic. Este método no se puede usar con JScript.

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

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
Exdisp.h
Archivo DLL
Shell32.dll (versión 4.71 o posterior)