IShellDispatch.TrayProperties 方法
显示 “任务栏”和“开始菜单属性 ”对话框。 此方法的效果与右键单击任务栏并选择 “属性”的效果相同。
语法
IShellDispatch.TrayProperties()
IShellDispatch.TrayProperties()
参数
此方法没有任何参数。
返回值
JScript
此方法不返回值。
VB
此方法不返回值。
备注
此方法通过 Shell.TrayProperties 方法实现和访问。
示例
以下示例演示了在 JScript、VBScript 和 Visual Basic 中使用 TrayProperties 。
Jscript:
<script language="JScript">
function fnShellTrayPropertiesJ()
{
var objShell = new ActiveXObject("shell.application");
objshell.TrayProperties();
}
</script>
VBScript:
<script language="VBScript">
function fnShellTrayPropertiesVB()
dim objShell
set objShell = CreateObject("shell.application")
objshell.TrayProperties
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnShellTrayPropertiesVB()
Dim objShell As Shell
Set objShell = New Shell
objshell.TrayProperties
Set objShell = Nothing
End Sub
要求
要求 | 值 |
---|---|
最低受支持的客户端 |
Windows 2000 专业版、Windows XP [仅限桌面应用] |
最低受支持的服务器 |
Windows 2000 Server [仅限桌面应用] |
标头 |
|
IDL |
|
DLL |
|