Gets the y-coordinate of the mouse during the generating mouse event.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Public ReadOnly Property Y As Integer
public int Y { get; }
public: property int Y { int get (); }
member Y : int
The mouse coordinates vary based on the event being raised. For example, when the Control.MouseMove event is handled, the mouse coordinate values are relative to the coordinates of the control that raised the event. Some events related to drag-and-drop operations have associated mouse coordinate values that are relative to the form origin or the screen origin.
The following code example uses the X and Y properties to display the current position of the mouse pointer in a ToolTip window. To use this code, call TrackCoordinates from the form constructor.
Dim TrackTip As ToolTip Private Sub TrackCoordinates() TrackTip = New ToolTip() End Sub Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove Dim TipText As String = String.Format("({0}, {1})", e.X, e.Y) TrackTip.Show(TipText, Me, e.Location) End Sub
ToolTip trackTip; private void TrackCoordinates() { trackTip = new ToolTip(); this.MouseMove += new MouseEventHandler(Form1_MouseMove); } void Form1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e) { String tipText = String.Format("({0}, {1})", e.X, e.Y); trackTip.Show(tipText, this, e.Location); }
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.