Vcl.WinXCtrls.TCustomActivityIndicator.IndicatorType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IndicatorType: TActivityIndicatorType read FIndicatorType write SetIndicatorType default aitMomentumDots;

C++

__property TActivityIndicatorType IndicatorType = {read=FIndicatorType, write=SetIndicatorType, default=0};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.WinXCtrls.pas
Vcl.WinXCtrls.hpp
Vcl.WinXCtrls TCustomActivityIndicator

Description

The type of indicator to display.

The possible values for the IndicatorType are the following:

  • aitMomentumDots: Default value. Traditional Windows 8/10 rotating sequence of dots accelerating and decelerating in a circular pattern.
  • aitRotatingSector: Alternating sectors of a segmented ring are highlighted in sequence to indicate activity.
  • aitSectorRing: Sectors of a segmented ring are highlighted in sequence until the ring is completely highlighted. On the next pass, each sector is displayed in a dimmed state.
  • aitRotatingLines: Rotating lines with different transparency in a ring.
  • aitRefresh: Rotating refresh icon.

See Also