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

New-UDProgress

Progress dialogs can show both determinate and indeterminate progress. They can also be circular or linear.

Synopsis

Progress dialogs can show both determinate and indeterminate progress. They can also be circular or linear.

Syntax

New-UDProgress [[-Id] <String>] [[-PercentComplete] <Int32>] [[-BackgroundColor] <DashboardColor>] [[-ProgressColor] <DashboardColor>] [-Circular] [[-Size] <String>] [[-Label] <String>] [<CommonParameters>]

Description

Creates a progress dialog. Progress dialogs can show both determinate and indeterminate progress. They can also be circular or linear.

Parameters

-Id

The ID of the component. It defaults to a random GUID.

Required?                    false
Position?                    1
Default value                [Guid]::NewGuid().ToString()
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false

-PercentComplete

The percent complete for the progress.

-BackgroundColor

The background color.

-ProgressColor

The progress bar color.

-Size

The size of the progress. Valid values are: "small", "medium", "large"

-Label

Adds a label to a circle progress.

Outputs

-------------------------- EXAMPLE 1 --------------------------

Last updated

Was this helpful?