Método ShellUIHelper.IsSubscribed
Indica se uma URL especificada está inscrita.
Sintaxe
bRetVal = ShellUIHelper.IsSubscribed(
sURL
)
Parâmetros
-
sURL [in]
-
Tipo: BSTR
Um valor String que especifica a URL.
Valor retornado
Tipo: Boolean*
true se a URL estiver inscrita; caso contrário, false.
Exemplos
O exemplo a seguir mostra o uso adequado desse método para JScript inserido em 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
Requisitos
Requisito | Valor |
---|---|
Cliente mínimo com suporte |
Windows 2000 Professional, Windows XP [somente aplicativos da área de trabalho] |
Servidor mínimo com suporte |
Windows 2000 Server [somente aplicativos da área de trabalho] |
Cabeçalho |
|
DLL |
|