Skip to main content

SymbolsAnimation.RefreshTime Property

Gets or sets the refresh time between two symbol animations.

Namespace: DevExpress.Xpf.Gauges

Assembly: DevExpress.Xpf.Gauges.v24.1.dll

NuGet Package: DevExpress.Wpf.Gauges

Declaration

public TimeSpan RefreshTime { get; set; }

Property Value

Type Description
TimeSpan

A TimeSpan value that is the refresh time between two animations.

Remarks

To see how the RefreshTime property works for the creeping line animation, set the CreepingLineAnimation.Repeat property to true.

Example

This example demonstrates how to customize the blinking animation effect in a digital gauge.

<dxga:DigitalGaugeControl.SymbolView>
    <dxga:MatrixView8x14>
        <dxga:MatrixView8x14.Animation>
            <dxga:BlinkingAnimation  RefreshTime="00:00:01" SymbolsStates="0 1 1 1 0 1 1 0" />
        </dxga:MatrixView8x14.Animation>
    </dxga:MatrixView8x14>
</dxga:DigitalGaugeControl.SymbolView>

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the RefreshTime 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