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

GridOptionsView.WaitAnimationOptions Property

Gets or sets how async data loading operations are indicated. This property is in effect in Instant Feedback Mode.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DefaultValue(WaitAnimationOptions.Default)]
[XtraSerializableProperty]
public virtual WaitAnimationOptions WaitAnimationOptions { get; set; }

Property Value

Type Default Description
WaitAnimationOptions **Default**

A WaitAnimationOptions object that specifies how async data loading operations are indicated.

Available values:

Name Description
Default

The same as the WaitAnimationOptions.Indicator option.

Indicator

Background operations are indicated within a dedicated indicator button.

For the GridControl, these operations are indicated within the Header Panel Button.

Panel

Background operations are indicated within a special panel displayed above a control.

Property Paths

You can access this nested property as listed below:

Object Type Path to WaitAnimationOptions
AdvBandedGridView
.OptionsView.WaitAnimationOptions
BandedGridView
.OptionsView.WaitAnimationOptions
GridView
.OptionsView.WaitAnimationOptions

Remarks

You can manually display the Loading Panel to indicate the process of data loading via the GridView.ShowLoadingPanel method.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the WaitAnimationOptions property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also