UseToolTips: Boolean;
The UseToolTips property determines whether tooltips are used. True - tooltips are used, False - tooltips are not used.
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.UseToolTips:= True;
End Sub Button1OnClick;
After executing the example the tooltips are used for the map.
See also: