-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
StartAutomating
authored and
StartAutomating
committed
Jul 20, 2023
1 parent
9492f79
commit 23807ca
Showing
1 changed file
with
41 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,41 @@ | ||
<?xml version="1.0" encoding="utf-16"?> | ||
<!-- Generated with EZOut 2.0: Install-Module EZOut or https://github.com/StartAutomating/EZOut --> | ||
<Types> | ||
<Type> | ||
<Name>Posh.Host</Name> | ||
<Members> | ||
<ScriptProperty> | ||
<Name>Height</Name> | ||
<GetScriptBlock> | ||
<# | ||
.SYNOPSIS | ||
Gets the height of the host | ||
.DESCRIPTION | ||
Gets the height of the host (in characters). | ||
.EXAMPLE | ||
$posh.Host.Height | ||
.EXAMPLE | ||
$Host.Height | ||
#> | ||
$this.UI.RawUI.BufferSize.Height | ||
</GetScriptBlock> | ||
</ScriptProperty> | ||
<ScriptProperty> | ||
<Name>Width</Name> | ||
<GetScriptBlock> | ||
<# | ||
.SYNOPSIS | ||
Gets the Width of the host | ||
.DESCRIPTION | ||
Gets the Width of the host (in characters). | ||
.EXAMPLE | ||
$posh.Host.Width | ||
.EXAMPLE | ||
$Host.Width | ||
#> | ||
$this.UI.RawUI.BufferSize.Width | ||
</GetScriptBlock> | ||
</ScriptProperty> | ||
</Members> | ||
</Type> | ||
</Types> |