Condividi tramite


Proprietà ShellFolderView.Folder

Ottiene un oggetto Folder che rappresenta la visualizzazione.

Questa proprietà è di sola lettura.

Sintassi

Folder = ShellFolderView.Folder

Valore proprietà

Oggetto che riceve l'oggetto Folder .

Commenti

La cartella può essere chiamata solo nel sistema locale. Non funzionerà quando viene eseguita in una pagina Web tramite HTTP o UNC.

Esempio

Nell'esempio seguente viene illustrato l'utilizzo appropriato di questa proprietà per JScript incorporato in HTML.

<html>
<head>
<title></title>

<script language="JavaScript">
    function fnShellFolderViewFolderJ()
    {
        var objFolder;
        
        objFolder = WebOC.Document.Folder;
        if (objFolder != null)
        {
            alert("Got Folder object");
        }
    }
    
    function fnLoad()
    {
        var webOC;
        
        webOC = document.all("WebOC");
        webOC.Navigate("C:\\");
    }
</script>

</head>
<body onload="fnLoad()">
<object id="WebOC" 
        classid="clsid:8856F961-340A-11D0-A96B-00C04FD705A2"
        width=400
        height=400 VIEWASTEXT>
</object>
<br><br>
<INPUT id=Folder 
       type=button 
       value=Folder 
       name=Folder 
       onclick="fnShellFolderViewFolderJ()">
</body>
</html>

Requisiti

Requisito Valore
Client minimo supportato
Windows 2000 Professional, Windows XP [solo app desktop]
Server minimo supportato
Windows 2000 Server [solo app desktop]
Intestazione
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (versione 4.71 o successiva)