View.WhatsAt Methods
Finds features presented at the specified window position.
Overload List
Name | Description | |
---|---|---|
Public method | WhatsAt(Point point) | Finds features presented at the specified window position. |
Public method | WhatsAt(System.Int32 x, System.Int32 y) | Finds features presented at the specified window position. |
Public method | WhatsAt(Point point, System.Int32 pointerRadius) | Finds features presented at the specified window coordinate. |
Public method | WhatsAt(System.Int32 x, System.Int32 y, System.Int32 pointerRadius) | Finds features presented at the specified window coordinate. |
WhatsAt(Point point)
Finds features presented at the specified window position.Syntax
public PresentationObjectCollection WhatsAt (
Point point
)
Parameters
The window position.
Return Value
Remarks
This method finds what has been presented inside a small rectangle around the specified pixel position. The size of the rectangle is 4 by 4 pixels.
The method returns a list of PresentationObject instances, for all presentations that overlap the rectangle, and that originate from selectable layers (see Layer.Selectable). The object that is drawn last (on top) is first in the list in 2D. In 3D, the closest object is first. Presentation objects created by selection visualizers sorted before all other presentation objects. The coordinates of the presentation objects are always in the coordinate reference system of the view.
WhatsAt(System.Int32 x, System.Int32 y)
Finds features presented at the specified window position.Syntax
public PresentationObjectCollection WhatsAt (
System.Int32 x,
System.Int32 y
)
Parameters
The x-coordinate of the window position.
The y-coordinate of the window position.
Return Value
Remarks
This method finds what has been presented inside a small rectangle around the specified pixel position. The size of the rectangle is 4 by 4 pixels.
The method returns a list of PresentationObject instances, for all presentations that overlap the rectangle, and that originate from selectable layers (see Layer.Selectable). The object that is drawn last (on top) is first in the list in 2D. In 3D, the closest object is first. Presentation objects created by selection visualizers sorted before all other presentation objects. The coordinates of the presentation objects are always in the coordinate reference system of the view.
WhatsAt(Point point, System.Int32 pointerRadius)
Finds features presented at the specified window coordinate.Syntax
public PresentationObjectCollection WhatsAt (
Point point,
System.Int32 pointerRadius
)
Parameters
The window coordinate.
Specifies the size in pixels of the rectangular area around the specified window coordinate to check.
Return Value
Remarks
This method finds what has been presented inside a small rectangle around the specified pixel coordinate. The size of the rectangle is specified with the pointerRadius parameter.
The method returns a list of PresentationObject instances, for all presentations that overlap the rectangle, and that originate from selectable layers (see Layer.Selectable). The object that is drawn last (on top) is first in the list in 2D. In 3D, the closest object is first. Presentation objects created by selection visualizers sorted before all other presentation objects. The coordinates of the presentation objects are always in the coordinate reference system of the view.
WhatsAt(System.Int32 x, System.Int32 y, System.Int32 pointerRadius)
Finds features presented at the specified window coordinate.Syntax
public PresentationObjectCollection WhatsAt (
System.Int32 x,
System.Int32 y,
System.Int32 pointerRadius
)
Parameters
The window X coordinate.
The window Y coordinate.
Specifies the size in pixels of the rectangular area around the specified window coordinate to check.
Return Value
Remarks
This method finds what has been presented inside a small rectangle around the specified pixel coordinate. The size of the rectangle is specified with the pointerRadius parameter.
The method returns a list of PresentationObject instances, for all presentations that overlap the rectangle, and that originate from selectable layers (see Layer.Selectable). The object that is drawn last (on top) is first in the list in 2D. In 3D, the closest object is first. Presentation objects created by selection visualizers sorted before all other presentation objects. The coordinates of the presentation objects are always in the coordinate reference system of the view.
Platforms
Windows, Linux, Android