ISEMenuItemCollection 是 ISEMenuItem 物件的集合。它是 Microsoft.PowerShell.Host.ISE.ISEMenuItemCollection 類別的執行個體。範例為 $psISE.CurrentPowerShellTab.AddOnsMenu.Submenus 物件,這個物件是用來自訂 Windows PowerShell 整合式指令碼環境 (ISE) 中的功能表。
方法
Add(string displayName, System.Management.Automation.ScriptBlock action, System.Windows.Input.KeyGesture shortcut)
將功能表項目新增至集合。
- displayname
- 要新增之功能表的顯示名稱。
- action
- System.Management.Automation.ScriptBlock,指定與這個功能表項目關聯的動作。
- shortcut
- 動作的捷徑,屬於 System.Windows.Input.KeyGesture 型別。
- 傳回值:
- 剛新增的 ISEMenuItem。
# Create an Add-ons menu with an accessor. # Note the use of “_” as opposed to the “&” for mapping to the accelerator for the menu item. $menuAdded = $psISE.CurrentPowerShellTab.AddOnsMenu.SubMenus.Add("_Process",{get-process},"Alt+P")
請參閱