Event fired when a tooltip is displayed for a shapefile with the RenderSettings.UseTooltip property set to true

Namespace:  EGIS.Controls
Assembly:  EGIS.Controls (in EGIS.Controls.dll)

Syntax

Visual Basic
Public Event TooltipDisplayed As EventHandler(Of SFMap..::..TooltipEventArgs)
C#
public event EventHandler<SFMap..::..TooltipEventArgs> TooltipDisplayed
Visual C++
public:
 event EventHandler<SFMap..::..TooltipEventArgs^>^ TooltipDisplayed {
	void add (EventHandler<SFMap..::..TooltipEventArgs^>^ value);
	void remove (EventHandler<SFMap..::..TooltipEventArgs^>^ value);
}
JavaScript
function add_tooltipDisplayed(value);
function remove_tooltipDisplayed(value);

Remarks

The event is also fired when the tooltip is hidden. In this case the TooltipEventArgs ShapeFileIndex and RecordIndex will return -1 This allows receivers to be notified when the mouse is no longer over a shape

See Also