metodo ShellWindows._NewEnum
Crea e restituisce un nuovo oggetto ShellWindows che rappresenta una copia di questo oggetto ShellWindows .
Sintassi
retVal = ShellWindows._NewEnum()
Parametri
Questo metodo non presenta parametri.
Valore restituito
Tipo: IUnknown**
Riferimento a un oggetto alla copia dell'oggetto ShellWindows .
Esempio
L'esempio seguente mostra _NewEnum in uso. Viene visualizzato un utilizzo appropriato per VBScript e Visual Basic. Questo metodo non può essere usato 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
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato |
Windows 2000 Professional, Windows XP [solo app desktop] |
Server minimo supportato |
Windows 2000 Server [solo app desktop] |
Intestazione |
|
DLL |
|