Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxTileControlItem.AnimationMode Property

Specifies the animation transition effect for tile frames.

#Declaration

Delphi
property AnimationMode: TdxDrawAnimationMode read; write; default dxTileControlDefaultAnimationMode;

#Property Value

Type Default
TdxDrawAnimationMode dxTileControlDefaultAnimationMode

#Remarks

Options include:

Value Description
amScrollLeft Scrolling right to left.
amScrollUp Scrolling bottom to top.
amScrollRight Scrolling left to right.
amScrollDown Scrolling top to bottom.
amFade Standard fade-in (fade for short).
amSegmentedFade Segmented fade.
amRandomSegmentedFade Random segmented fade.
amScrollLeftFade The combination of scrolling left and fade-in effects.
amScrollUpFade The combination of scrolling up and fade-in effects.
amScrollRightFade The combination of scrolling right and fade-in effects.
amScrollDownFade The combination of scrolling down and fade-in effects.

You can customize the manner in which tile elements are animated via a tile control’s OptionsItemAnimate property and the OptionsAnimate property of individual tile items and their tile frames.

The default value of the AnimationMode property is amScrollUp.

See Also