From b1155434ba8d15a7b3d3fb5c5eacb70ca0df56c1 Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Sun, 25 Feb 2024 21:58:24 +0000 Subject: [PATCH] feat: Posh.Host.UI.Box.GetBorderLine ( Fixes #373 ) --- docs/Posh/Host/UI/Box/GetBorderLine.md | 44 ++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 docs/Posh/Host/UI/Box/GetBorderLine.md diff --git a/docs/Posh/Host/UI/Box/GetBorderLine.md b/docs/Posh/Host/UI/Box/GetBorderLine.md new file mode 100644 index 0000000..c762ab6 --- /dev/null +++ b/docs/Posh/Host/UI/Box/GetBorderLine.md @@ -0,0 +1,44 @@ +Posh.Host.UI.Box.GetBorderLine() +-------------------------------- + +### Synopsis +Gets a border line + +--- + +### Description + +Gets a single border line of a box. + +--- + +### Parameters +#### **LineType** +The type of line. +Valid Values: + +* Top +* Bottom +* Middle +* Row + +|Type |Required|Position|PipelineInput| +|----------|--------|--------|-------------| +|`[String]`|false |1 |false | + +#### **Width** +The width of the border. If no width is provided, will render a border the width of the screen. + +|Type |Required|Position|PipelineInput| +|---------|--------|--------|-------------| +|`[Int32]`|false |2 |false | + +#### **ColumnWidth** +The width of each column. +If this is a decimal less than or equal to 1, it will be considered a percentage of $Width + +|Type |Required|Position|PipelineInput| +|------------|--------|--------|-------------| +|`[Double[]]`|false |3 |false | + +---