Click or drag to resize

RendererListHitTest Method

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
If this RendererList is Visible, check if any of the objects in the list are located at the specified x and y coordinates.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public IMapMouseHandler HitTest(
	int x,
	int y,
	IMap aMap
)

Parameters

x
Type: SystemInt32
The int x coordinate.
y
Type: SystemInt32
The int y coordinate.
aMap
Type: Telogis.GeoBaseIMap
The IMap upon which the click occurred.

Return Value

Type: IMapMouseHandler
Any object in the the renderlist that is at the specified coordinates, otherwise null.

Implements

IMapMouseHandlerHitTest(Int32, Int32, IMap)
Remarks
Iterates through each object in this RendererList, calling the HitTest(Int32, Int32, IMap) method of each one. If one of these objects is hit, it is returned. If the iteration reaches the end of the list without a hit, null is returned.
See Also