Skip to main content
Tab

ASPxUploadControl.ProgressBarSettings Property

Gets the progress bar‘s settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

public UploadProgressBarSettings ProgressBarSettings { get; }

#Property Value

Type Description
UploadProgressBarSettings

A ProgressBarSettings object that contains progress bar settings.

#Remarks

Use the ProgressBarSettings property to access the settings that allow you to customize the ASPxUploadControl‘s progress bar.

#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