Skip to main content
A newer version of this page is available. .
Tab

ASPxProgressBarBase.CustomDisplayFormat Property

Gets or sets the pattern used to format the text displayed for the progress if the ASPxProgressBarBase.DisplayMode property is set to ProgressBarDisplayMode.Custom.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public string CustomDisplayFormat { get; set; }

Property Value

Type Description
String

A String value that is the format pattern.

Remarks

When the ASPxProgressBarBase.DisplayMode property is set to ProgressBarDisplayMode.Custom you can use the CustomDisplayFormat property to specify a pattern to format the text displayed in the progress bar.

Within the pattern you can use the following arguments:

  • {0} - the current progress bar position;
  • {1} - the minimum progress bar value;
  • {2} - the maximum progress bar value.
See Also