Logins may be showing incorrect profile information. Please email psgadmin at microsoft.com for support.
Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Get-SVGL
1.1.2
Private/UI/Format-Table.ps1
function
Format-Table
{
param
(
[
Parameter
(
Mandatory
=
$true
)
]
[string]
$Format
,
[
Parameter
(
Mandatory
=
$true
)
]
[string[]]
$Values
)
# Format the table row
return
$Format
-f
$Values
}