Initializes a new instance of the GraphicMouseEventArgs class.

Namespace:  ESRI.ArcGISExplorer.Mapping

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public GraphicMouseEventArgs(
	MouseButtons button,
	int x,
	int y,
	Graphic graphic
)
Visual Basic (Declaration)
Public Sub New ( _
	button As MouseButtons, _
	x As Integer, _
	y As Integer, _
	graphic As Graphic _
)

Parameters

button
Type: System.Windows.Forms..::.MouseButtons

One of the MouseButtons values, indicating which mouse button was pressed.
x
Type: System..::.Int32

The x-coordinate of a mouse click, in pixels.
y
Type: System..::.Int32

The y-coordinate of a mouse click, in pixels.
graphic
Type: ESRI.ArcGISExplorer.Mapping..::.Graphic

The Graphic that is located at the coordinates of a mouse click.

See Also