For the complete documentation index, see llms.txt. This page is also available as Markdown.

Tooltip

Tooltip component for PowerShell Universal Apps.

Tooltips display informative text when users hover over an element.

Basic Tooltip

New-UDTooltip -Content {
    New-UDIcon -Icon 'User'
} -TooltipContent {
    "User"
}

Placement

Place the tooltip on top, bottom, left or right.

New-UDTooltip -Content {
    New-UDIcon -Icon 'User'
} -TooltipContent {
    "User"
} -Place 'bottom'

Custom Content

Tooltip content can contain any UD element.

Tooltip Type

Tooltips can be over various types including: "dark", "success", "warning", "error", "info", "light"

Last updated

Was this helpful?