Version

ProgressText Property

Returns or sets the text that is displayed within the progress bar.
Syntax
'Declaration
 
Public Property ProgressText As String
public string ProgressText {get; set;}
Remarks

The ProgressText is used to provide a Infragistics.Win.UltraWinProgressBar.IProgressBarInfo.Label within the progress bar itself. The string can include special escape tags that will be replaced by values from the control.

Replaceable Escape Tags:
[Percent] Unformatted percent completed
[RemainingPercent] Unformatted percent remaining
[Formatted] Formatted percent completed (ProgressFormat)
[RemainingFormatted] Formatted percent remaining (ProgressFormat)
[Remaining] Amount remaining (Maximum - Value)
[Completed] Amount completed (Value - Minimum)
[Minimum] Minimum value (Minimum)
[Maximum] Maximum value (Maximum)
[Value] Current value (Value)
[Range] Value Range (Maximum - Minimum)
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also