Version

Text Property (UltraProgressBar)

Determines the label displayed for the progress bar.
Syntax
'Declaration
 
Public Overrides Property Text As String
public override string Text {get; set;}
Remarks

The Text is used to provide a Label for the progress bar. The string can include special escape tags that will be replaced by values from the control. The string will only be displayed if the TextVisible propert is set to true.

Replaceable Escape Tags:
[Percent] Unformatted percent completed
[RemainingPercent] Unformatted percent remaining
[Formatted] Formatted percent completed (PercentFormat)
[RemainingFormatted] Formatted percent remaining (PercentFormat)
[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