Condividi tramite


Metodo ShellUIHelper.IsSubscritto

Indica se un URL specificato viene sottoscritto.

Sintassi

bRetVal = ShellUIHelper.IsSubscribed(
  sURL
)

Parametri

sURL [in]

Tipo: BSTR

Valore String che specifica l'URL.

Valore restituito

Tipo: Boolean*

true se l'URL viene sottoscritto; in caso contrario, false.

Esempio

Nell'esempio seguente viene illustrato l'utilizzo appropriato di questo metodo per JScript incorporato in HTML e Visual Basic.

Jscript:

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

<object id="ShellUIHelper"
        classid="CLSID:64AB4BB7-111E-11d1-8F79-00C04FC2FBE1"
        width=0
        height=0
        VIEWASTEXT>
</object>

<script language="JavaScript">
    function fnShellUIHelperIsSubscribedJ()
    {
        var bReturn;
        
        bReturn = ShellUIHelper.IsSubscribed("https://www.microsoft.com/");
        alert(bReturn);
    }
</script>

</head>
<body onload=fnShellUIHelperIsSubscribedJ()>
</body>
</html>

Visual Basic:

Private Sub fnShellUIHelperIsSubscribedVB()
    Dim objShellUIHelper As ShellUIHelper
    Dim bReturn          As Boolean
    
    Set objShellUIHelper = New ShellUIHelper
        bReturn = objShellUIHelper.IsSubscribed("https://www.microsoft.com/")
        Debug.Print bReturn
    Set objShellUIHelper = 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
Exdisp.h
DLL
Shell32.dll (versione 4.71 o successiva)