Back to Devexpress

DxLoadingPanel.IndicatorAnimationType Property

blazor-devexpress-dot-blazor-dot-dxloadingpanel-62659085.md

latest2.4 KB
Original Source

DxLoadingPanel.IndicatorAnimationType Property

Specifies the indicator’s animation type.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(WaitIndicatorAnimationType.Spin)]
[Parameter]
public WaitIndicatorAnimationType IndicatorAnimationType { get; set; }

Property Value

TypeDefaultDescription
WaitIndicatorAnimationTypeSpin

An enumeration value.

|

Available values:

NameDescriptionImage
Spin

The component applies the spin animation effect.

|

| | Pulse |

The component applies the pulse animation effect.

|

| | Flip |

The component applies the flip animation effect.

|

|

Remarks

The following code snippet applies the flip animation effect to the Loading Panel’s indicator:

razor
<DxLoadingPanel Visible="true"
                IndicatorAnimationType="WaitIndicatorAnimationType.Flip"
                ApplyBackgroundShading="true"
                CssClass="w-100">
    <DxMemo @bind-Text="@Text"
            Rows="10" />
</DxLoadingPanel>

@code {
    string Text = "Andrew received his BTS commercial in 1987 and a Ph.D. in international marketing at the University " +
                  "of Dallas in 1994. He speaks French and Italian fluently, and reads German. He joined the company as " +
                  "a sales representative. After that, he was promoted to sales manager in January 2005 and vice president " + 
                  "of sales in March 2006. Andrew is a member of the Sales Management Round table, Seattle Chamber of Commerce, and Pacific Rim Importers Association.";
}

See Also

DxLoadingPanel Class

DxLoadingPanel Members

DevExpress.Blazor Namespace