El objeto de colección PowerShellTab es una colección de objetos PowerShellTab. Es una instancia de la clase Microsoft.PowerShell.Host.ISE.PowerShellTabs. Un ejemplo es el objeto $psISE.PowerShellTabs.
Métodos
Add()
Agrega una nueva ficha de PowerShell a la colección. Devuelve la ficha que se acaba de agregar.
$psISE.PowerShellTabs.Add()
SetSelectedPowerShellTab(Microsoft.PowerShell.Host.ISE.PowerShellTab psTab)
Selecciona la ficha de PowerShell especificada por pstab.
- psTab
- Ficha de PowerShell que se ha de seleccionar.
$newTab = $psISE.PowerShellTabs.Add() # Change the DisplayName of the new PowerShell tab. $newTab.DisplayName="Brand New Tab"
Remove(Microsoft.PowerShell.Host.ISE.PowerShellTab psTab)
Quita la ficha especificada por pstab.
- psTab
- Ficha de PowerShell que se ha de quitar.
$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)
Vea también