Shell.TrayProperties 方法
顯示 [工作列] 和 [開始功能表屬性 ] 對話方塊。 這個方法的效果與以滑鼠右鍵按一下工作列並選取 [ 屬性] 相同。
語法
iRetVal = Shell.TrayProperties()
Shell.TrayProperties() As Integer
參數
這個方法沒有任何參數。
範例
下列範例顯示使用 中的 TrayProperties 。 JScript、VBScript 和 Visual Basic 會顯示適當的使用方式。
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 Professional、Windows XP [僅限桌面應用程式] |
最低支援的伺服器 |
Windows 2000 Server [僅限桌面應用程式] |
標頭 |
|
Idl |
|
DLL |
|