Skip to main content
Tab

ASPxProgressBarBase.ClientVisible Property

Gets or sets a value that specifies the initial visibility state of a progress bar control on the client.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool ClientVisible { get; set; }

Property Value

Type Default Description
Boolean true

true to initially display a progress bar on the client; false to render it on the web page, but make it initially hidden on the client side.

Remarks

Use the ClientVisible property to define the progress bar control’s initial visibility state. The control’s visibility can then be dynamically changed on the client side using the ASPxClientControlBase.SetVisible method.

Note

If a progress bar control’s server Visible property is set to false, it is not rendered on the web page at all, so it can’t be manipulated on the client side.

See Also