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)
참고 항목