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

ASPxUploadControl.ProgressBarIndicatorStyle Property

Gets the style settings that define the appearance of the progress bar indicator element.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public ProgressBarIndicatorStyle ProgressBarIndicatorStyle { get; }

Property Value

Type Description
ProgressBarIndicatorStyle

A ProgressBarIndicatorStyle object containing style settings.

Remarks

The ProgressBarIndicatorStyle property is in effect if the progress panel is visible (this is defined by the ASPxUploadControl.ShowProgressPanel property).

Example

This sample demonstrates how to use the ASPxUploadControl, and how to pass a file name that was saved on the server to the client, by using the server-side and client-side FileUploadComplete events.

     function OnUploadStart() {
         btnUpload.SetText("Uploading...");
         btnUpload.SetEnabled(false);
     }
     function OnUploadComplete(args) {
         btnUpload.SetText("Upload");
         btnUpload.SetEnabled(true);
         lblFileName.SetText(args.callbackData);
     }
See Also