ImageClickEventArgs Constructors

Definition

Initializes a new instance of the ImageClickEventArgs class.

Overloads

ImageClickEventArgs(Int32, Int32)

Initializes a new instance of the ImageClickEventArgs class using the x and y parameters.

ImageClickEventArgs(Int32, Int32, Double, Double)

Initializes a new instance of the ImageClickEventArgs class using the x, y, xRaw, and yRaw parameters.

ImageClickEventArgs(Int32, Int32)

Initializes a new instance of the ImageClickEventArgs class using the x and y parameters.

public:
 ImageClickEventArgs(int x, int y);
public ImageClickEventArgs (int x, int y);
new System.Web.UI.ImageClickEventArgs : int * int -> System.Web.UI.ImageClickEventArgs
Public Sub New (x As Integer, y As Integer)

Parameters

x
Int32

The x-coordinate where the user clicked an image-based ASP.NET server control.

y
Int32

The y-coordinate where the user clicked an image-based ASP.NET server control.

See also

Applies to

ImageClickEventArgs(Int32, Int32, Double, Double)

Initializes a new instance of the ImageClickEventArgs class using the x, y, xRaw, and yRaw parameters.

public:
 ImageClickEventArgs(int x, int y, double xRaw, double yRaw);
public ImageClickEventArgs (int x, int y, double xRaw, double yRaw);
new System.Web.UI.ImageClickEventArgs : int * int * double * double -> System.Web.UI.ImageClickEventArgs
Public Sub New (x As Integer, y As Integer, xRaw As Double, yRaw As Double)

Parameters

x
Int32

The x-coordinate where a user clicked an image-based ASP.NET server control.

y
Int32

The y-coordinate where a user clicked an image-based ASP.NET server control.

xRaw
Double

The raw x-coordinate where a user clicked an image-based ASP.NET server control.

yRaw
Double

The raw y-coordinate where a user clicked an image-based ASP.NET server control.

Applies to