PowerShellTab 集合物件是 PowerShellTab 物件的集合。它是 Microsoft.PowerShell.Host.ISE.PowerShellTabs 類別的執行個體。範例為 $psISE.PowerShellTabs 物件。
方法
Add()
將新的 PowerShell 索引標籤新增至集合。它會傳回新加入的索引標籤。
$psISE.PowerShellTabs.Add()
SetSelectedPowerShellTab(Microsoft.PowerShell.Host.ISE.PowerShellTab psTab)
選取 pstab 所指定的 PowerShell 索引標籤。
- psTab
- 要選取的 PowerShell 索引標籤。
$newTab = $psISE.PowerShellTabs.Add() # Change the DisplayName of the new PowerShell tab. $newTab.DisplayName="Brand New Tab"
Remove(Microsoft.PowerShell.Host.ISE.PowerShellTab psTab)
移除 pstab 所指定的索引標籤。
- psTab
- 要移除的 PowerShell 索引標籤。
$newTab = $psISE.PowerShellTabs.Add() Change the DisplayName of the new PowerShell tab. $newTab.DisplayName="This tab will go away in 5 seconds" sleep 5 $psISE.PowerShellTabs.Remove($newTab)
請參閱