Folder2.DismissedWebViewBarricade メソッド
ユーザーによって閉じられている Web ビュー バリケードに応答して呼び出されます。
構文
Folder2.DismissedWebViewBarricade()
パラメーター
このメソッドにはパラメーターはありません。
戻り値
このメソッドは値を返しません。
解説
アプリケーションは、ユーザーが Web ビューのバリケードを閉じると、このメソッドを呼び出します。
例
次の例では 、DismissedWebViewBarricade を使用して、C:\Windows フォルダーの Web ビュー バリケードが無視されたことを指定します。 JScript、VBScript、Visual Basic では適切な使用方法が表示されます。
Jscript:
<script language="JScript">
function fnFolder2ObjectDismissedWebViewBarricadeJ()
{
var objShell = new ActiveXObject("shell.application");
var objFolder2 = new Object;
objFolder2 = objShell.NameSpace("C:\\WINDOWS");
if (objFolder2 != null)
{
objFolder2.DismissedWebViewBarricade();
}
}
</script>
Vbscript:
<script language="VBScript">
function fnFolder2ObjectDismissedWebViewBarricadeVB()
dim objShell
dim objFolder2
set objShell = CreateObject("shell.application")
set objFolder2 = objShell.NameSpace("C:\WINDOWS")
if (not objFolder2 is nothing) then
objFolder2.DismissedWebViewBarricade()
end if
set objFolder2 = nothing
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub btnDismissedWebViewBarricade_Click()
Dim objShell As Shell
Dim objFolder2 As Folder2
Set objShell = New Shell
Set objFolder2 = objShell.NameSpace("C:\WINDOWS")
If (Not objFolder2 Is Nothing) Then
objFolder2.DismissedWebViewBarricade
End If
Set objFolder2 = Nothing
Set objShell = Nothing
End Sub
要件
要件 | 値 |
---|---|
サポートされている最小のクライアント |
Windows 2000 Professional、Windows XP [デスクトップ アプリのみ] |
サポートされている最小のサーバー |
Windows Server 2003 [デスクトップ アプリのみ] |
Header |
|
IDL |
|
[DLL] |
|
こちらもご覧ください