windowsforms-devexpress-dot-xtraverticalgrid-dot-events-dot-dragroweventargs.md
Gets a point representing the current mouse cursor position.
Namespace : DevExpress.XtraVerticalGrid.Events
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
public Point ScreenLocation { get; }
Public ReadOnly Property ScreenLocation As Point
| Type | Description |
|---|---|
| Point |
A Point structure representing the screen coordinates of the current mouse cursor position.
|
When providing a handler for the VGridControlBase.StartDragRow, VGridControlBase.ProcessDragRow and VGridControlBase.EndDragRow events, you can use this property to obtain the screen coordinates of the current mouse cursor position.
Note that the following steps should be performed to obtain information on the point specified:
After that you can read the properties of the VGridHitInfo object returned by the VGridControlBase.CalcHitInfo method to determine a particular grid element located under the mouse pointer.
See Also