New-UDTable vertical and not horizontal

Hi guys,
is there a way to render New-UDTable vertical and not horizontal

You can’t render the table vertical but you can adjust your data to display like that. I’ve seen people do this for hashtables. This would return the properties of the hashtable as key\value pairs that then generate rows in the table.

Something like (not tested):

$Hashtable = @{
     Firstname = "Test"
     LastName = "Cool" 
}

New-UDTable -Data ($HashTable.GetEnumerator())