piDogDataView.DataView.CellMouseMove

Scope: Public
Event CellMouseMove(row as integer, column as integer, x as integer, y as integer)
The mouse moved within the cell at row-column. X and Y are relative to the top-left of the cell.


Example:


//example to show a north/south splitter when mousing edge of cells with cellheight

If Me.CellHeight(row,column)>Me.RowHeight(row) And y>Me.cellheight(row,column)-5 Then
Me.mousecursor=System.Cursors.SplitterNorthSouth
Else
Me.mousecursor=Nil
End If