//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.Web.UI { using System; /// /// [To be supplied.] /// public sealed class ImageClickEventArgs : EventArgs { /// /// [To be supplied.] /// public int X; /// /// [To be supplied.] /// public int Y; /// /// [To be supplied.] /// public double XRaw; /// /// [To be supplied.] /// public double YRaw; /// /// [To be supplied.] /// public ImageClickEventArgs(int x,int y) { this.X = x; this.Y = y; } /// /// [To be supplied.] /// public ImageClickEventArgs(int x, int y, double xRaw, double yRaw) { this.X = x; this.Y = y; this.XRaw = xRaw; this.YRaw = yRaw; } } }