ISESnippetCollection 对象The ISESnippetCollection Object

本文内容

ISESnippetCollection 对象是 ISESnippet 对象的集合。PowerShellTab 对象关联的文件集合是此类的成员。比如 $psISE.CurrentPowerShellTab.Files 集合。

方法Methods

Load( FilePathName )Load( FilePathName )

在 Windows PowerShell ISE 3.0 和更高版本中受支持,但不存在于早期版本中。

加载包含用户定义的代码段的 .snippets.ps1xml 文件。创建代码段最简单的方法就是使用 New-IseSnippet cmdlet,后者会自动将它们存储在配置文件文件夹中,以便你每次启动 Windows PowerShell ISE 时进行加载。

FilePathName - 字符串,包含代码段定义的 .snippets.ps1xml 文件的路径和文件名。

  1. # Loads a custom snippet file into the current PowerShell tab.
  2. $SnipFile = Join-Path ( Split-Path $profile) 'Snippets\MySnips.snippets.ps1xml' $psISE.CurrentPowerShellTab.Snippets.Add($SnipPath)

另请参阅See Also