Formatting/EventFul.EventHandler.format.ps1
Write-FormatView -TypeName Eventful.EventHandler -Property Name, IsSpecificEvent, Synopsis, Parameters -VirtualProperty @{ Parameters = { @(foreach ($kv in ([Management.Automation.CommandMetaData]$_).Parameters.GetEnumerator()) { @( . $setOutputStyle -ForegroundColor Verbose "[$($kv.Value.ParameterType)]" . $clearOutputStyle . $setOutputStyle -ForegroundColor Warning "`$$($kv.Key)" . $clearOutputStyle ) -join '' }) -join [Environment]::NewLine } } -Wrap -ColorProperty @{ "Name" = {"Success"} } |