Link
Link component for Universal Dashboard.
Create a hyper link in a dashboard.
Basic Link
Create a basic link that goes to a web page.
New-UDLink -Text 'Ironman Software' -Url https://www.ironmansoftware.comChange Style
Adjust the underline and text style.
    New-UDLink -Text 'Ironman Software' -Url https://www.ironmansoftware.com -Variant h2 -Underline alwaysOpen in a New Window
Open the link a new window when clicked.
New-UDLink -Text 'Ironman Software' -Url https://www.ironmansoftware.com -OpenInNewWindowOnClick Event Handler
Execute a PowerShell script block when the link is clicked.
New-UDLink -Text 'Ironman Software' -OnClick {
    Show-UDToast "Hello!"
}API
Last updated