-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating EZOut.HelpOut.ps1 (changing import logic) (#51)
- Loading branch information
StartAutomating
authored and
StartAutomating
committed
Jul 25, 2022
1 parent
a683e11
commit 9598199
Showing
1 changed file
with
208 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,208 @@ | ||
|
||
Write-FormatTreeView | ||
-------------------- | ||
### Synopsis | ||
Writes the format XML for a TreeView | ||
|
||
--- | ||
### Description | ||
|
||
Writes the .format.ps1xml fragement for a tree view, or a tree node. | ||
|
||
--- | ||
### Related Links | ||
* [Write-FormatCustomView](Write-FormatCustomView.md) | ||
* [Write-FormatViewExpression](Write-FormatViewExpression.md) | ||
--- | ||
### Examples | ||
#### EXAMPLE 1 | ||
```PowerShell | ||
Write-FormatTreeView -TypeName System.IO.FileInfo, System.IO.DirectoryInfo -NodeProperty Name -HasChildren { | ||
if (-not $_.EnumerateFiles) { return $false } | ||
foreach ($f in $_.EnumerateFiles()) {$f;break} | ||
}, | ||
{ | ||
if (-not $_.EnumerateDirectories) { return $false } | ||
foreach ($f in $_.EnumerateDirectories()) {$f;break} | ||
} -Children { | ||
$_.EnumerateFiles() | ||
}, { | ||
foreach ($d in $_.EnumerateDirectories()) { | ||
if ($d.Attributes -band 'Hidden') { continue } | ||
$d | ||
} | ||
} -Branch ('' + [char]9500 + [char]9472 + [char]9472) -Trunk '| ' | | ||
Out-FormatData | | ||
Add-FormatData | ||
``` | ||
Get-Module EZOut | Split-Path | Get-Item | Format-Custom | ||
--- | ||
### Parameters | ||
#### **Property** | ||
|
||
One or more properties to be displayed. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|------------------|--------|-------|---------------------| | ||
|```[PSObject[]]```|false |1 |true (ByPropertyName)| | ||
--- | ||
#### **Separator** | ||
|
||
The separator between one or more properties. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|--------------|--------|-------|---------------------| | ||
|```[String]```|false |2 |true (ByPropertyName)| | ||
--- | ||
#### **Branch** | ||
|
||
The Tree View's branch. | ||
This text will be displayed before the node. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|--------------|--------|-------|---------------------| | ||
|```[String]```|false |3 |true (ByPropertyName)| | ||
--- | ||
#### **Trunk** | ||
|
||
The Tree View's Trunk. | ||
This will be displayed once per depth. | ||
By default, this is four blank spaces. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|--------------|--------|-------|---------------------| | ||
|```[String]```|false |4 |true (ByPropertyName)| | ||
--- | ||
#### **TypeName** | ||
|
||
One or more type names. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|----------------|--------|-------|---------------------| | ||
|```[String[]]```|false |5 |true (ByPropertyName)| | ||
--- | ||
#### **SelectionSet** | ||
|
||
The name of the selection set. Selection sets are an alternative way to specify a list of types. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|--------------|--------|-------|---------------------| | ||
|```[String]```|false |6 |true (ByPropertyName)| | ||
--- | ||
#### **ControlName** | ||
|
||
The name of the tree node control. | ||
If not provided, this will be Typename1/TypeName2.TreeNode or SelectionSet.TreeNode | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|--------------|--------|-------|---------------------| | ||
|```[String]```|false |7 |true (ByPropertyName)| | ||
--- | ||
#### **ViewTypeName** | ||
|
||
If provided, the table view will only be used if the the typename includes this value. | ||
This is distinct from the overall typename, and can be used to have different table views for different inherited objects. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|--------------|--------|-------|---------------------| | ||
|```[String]```|false |8 |true (ByPropertyName)| | ||
--- | ||
#### **ViewSelectionSet** | ||
|
||
If provided, the table view will only be used if the the typename is in a SelectionSet. | ||
This is distinct from the overall typename, and can be used to have different table views for different inherited objects. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|--------------|--------|-------|---------------------| | ||
|```[String]```|false |9 |true (ByPropertyName)| | ||
--- | ||
#### **ViewCondition** | ||
|
||
If provided, will selectively display items. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|-------------------|--------|-------|---------------------| | ||
|```[ScriptBlock]```|false |10 |true (ByPropertyName)| | ||
--- | ||
#### **EndBranch** | ||
|
||
Text displayed at the end of each branch. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|--------------|--------|-------|---------------------| | ||
|```[String]```|false |11 |true (ByPropertyName)| | ||
--- | ||
#### **EndBranchScript** | ||
|
||
A script block displayed at the end of each branch. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|-------------------|--------|-------|---------------------| | ||
|```[ScriptBlock]```|false |12 |true (ByPropertyName)| | ||
--- | ||
#### **HasChildren** | ||
|
||
A set of script blocks that determine if the node has children. | ||
If these script blocks return a value (that is not 0 or $false), | ||
then the associated Children scriptblock will be called. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|---------------------|--------|-------|---------------------| | ||
|```[ScriptBlock[]]```|false |13 |true (ByPropertyName)| | ||
--- | ||
#### **Children** | ||
|
||
A set of script blocks to populate the next generation of nodes. | ||
By default, the values returned from these script blocks will become child ndoes | ||
of the same type of tree control. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|---------------------|--------|-------|---------------------| | ||
|```[ScriptBlock[]]```|false |14 |true (ByPropertyName)| | ||
--- | ||
#### **ChildNodeControl** | ||
|
||
If provided, child nodes will be rendered with a different custom custom control. | ||
This control must exist in the same format file. | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput | | ||
|----------------|--------|-------|---------------------| | ||
|```[String[]]```|false |15 |true (ByPropertyName)| | ||
--- | ||
### Syntax | ||
```PowerShell | ||
Write-FormatTreeView [[-Property] <PSObject[]>] [[-Separator] <String>] [[-Branch] <String>] [[-Trunk] <String>] [[-TypeName] <String[]>] [[-SelectionSet] <String>] [[-ControlName] <String>] [[-ViewTypeName] <String>] [[-ViewSelectionSet] <String>] [[-ViewCondition] <ScriptBlock>] [[-EndBranch] <String>] [[-EndBranchScript] <ScriptBlock>] [[-HasChildren] <ScriptBlock[]>] [[-Children] <ScriptBlock[]>] [[-ChildNodeControl] <String[]>] [<CommonParameters>] | ||
``` | ||
--- | ||
|
||
|