IMapView.SelectionFlashTimerInterval

Syntax

SelectionFlashTimerInterval: Integer;

Description

The SelectionFlashTimerInterval property determines the highlight blinking interval for territories (in milliseconds per blink phase).

Example

Executing the example requires a form with the Button1 button, the MapBox component and the UiMap component that is a data source for MapBox.

The example is executed on clicking the button.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

MapView: IMapView;

Begin

MapView := UiMap1.Map.View;

MapView.UseSelectionFlash:= True;

MapView.SelectionFlashPhasesCount := 6;

MapView.SelectionFlashTimerInterval := 10;

End Sub Button1OnClick;

After executing the example when highlighting the territories the blinking is used with a blink phase interval of 10 milliseconds. Each blink is divided into six blink phases.

See also:

IMapView