TiImageDisplay.TimerIncrementUp

TiImageDisplay

Controls whether the cycling of images is incremented down or up through the list of images.

property TimerIncrementUp : Boolean;

Description

Use TimerIncrementUp to specify whether the automatic cycling of images occurs in a forward direction or backward direction. If TimerIncrementUp is set to TRUE, then the images sequence forward or UP through their Index numbers (e.g. 0, 1, 2, 3, …, 9, 10). If TimerIncrementUp is set to FALSE, then the images sequence backward or DOWN through their Index numers (e.g. 10, 9, 8, …, 1, 0).

Note: if TimerEnabled is set to FALSE, then this property will not take any affect as it only affects the automatic sequencing of images as done by the built-in timer.

Example

Delphi

iComponent.TimerIncrementUp := True;

C++ Builder

iComponent->TimerIncrementUp = True;

Contents | Index | Previous | Next