ISE 对象模型层次结构The ISE Object Model Hierarchy

本文内容

本主题介绍了属于 Windows PowerShell 集成脚本环境 (ISE) 一部分的对象的层次结构。在 Windows PowerShell 3.0 和 Windows PowerShell 4.0 中包含 Windows PowerShell ISE。单击一个对象,使你转到定义对象的类的参考文档。

$psISE 对象$psISE Object

$PsISE 对象是 Windows PowerShell ISE 对象层次结构的根对象它位于顶层,使以下对象可用于脚本编写:

$psISE.CurrentFile$psISE.CurrentFile

$PsISE.CurrentFile 对象是 ISEFile 类的一个实例。

$psISE.CurrentPowerShellTab$psISE.CurrentPowerShellTab

$PsISE.CurrentPowerShellTab对象是的一个实例PowerShellTab类。

$psISE.CurrentVisibleHorizontalTool$psISE.CurrentVisibleHorizontalTool

$PsISE.CurrentVisibleHorizontalTool 对象是 ISEAddOnTool 类的实例。它表示已安装的外接程序工具,当前停靠在 Windows PowerShell ISE 窗口的顶部。

$psISE.CurrentVisibleVerticalTool$psISE.CurrentVisibleVerticalTool

$PsISE.CurrentVisibleHorizontalTool 对象是 ISEAddOnTool 类的实例。它表示已安装的外接程序工具,当前停靠在 Windows PowerShell ISE 窗口的右侧。

$psISE.Options$psISE.Options

$PsISE.Options 对象是 ISEOptions 类的一个实例。ISEOptions 对象代表 Windows PowerShell ISE 的各种设置。它是 Microsoft.PowerShell.Host.ISE.ISEOptions 类的实例。

$psISE.PowerShellTabs$psISE.PowerShellTabs

$PsISE.PowerShellTabs 对象是 PowerShellTabCollection 类的实例。它是所有当前打开的 PowerShell 选项卡的集合,表示本地计算机上或在已连接的远程计算机上可用的 Windows PowerShell 运行环境。集合中的每个成员均为 PowerShellTab 类的实例。

另请参阅See Also