Nevron .NET Vision
Nevron.UI.WinForm.Controls Namespace / NDataGridView Class / CellMouseMove Event


In This Topic
    CellMouseMove Event
    In This Topic
    Syntax
    'Declaration
     
    
    <SRCategoryAttribute("CatMouse")>
    <SRDescriptionAttribute("DataGridView_CellMouseMoveDescr")>
    Public Event CellMouseMove As System.Windows.Forms.DataGridViewCellMouseEventHandler
    'Usage
     
    
    Dim instance As NDataGridView
    Dim handler As System.Windows.Forms.DataGridViewCellMouseEventHandler
     
    AddHandler instance.CellMouseMove, handler
    [SRCategory("CatMouse")]
    [SRDescription("DataGridView_CellMouseMoveDescr")]
    public event System.Windows.Forms.DataGridViewCellMouseEventHandler CellMouseMove
    Event Data

    The event handler receives an argument of type System.Windows.Forms.DataGridViewCellMouseEventArgs containing data related to this event. The following DataGridViewCellMouseEventArgs properties provide information specific to this event.

    PropertyDescription
    (Inherited from System.Windows.Forms.MouseEventArgs)
    (Inherited from System.Windows.Forms.MouseEventArgs)
    Gets the zero-based column index of the cell.  
    (Inherited from System.Windows.Forms.MouseEventArgs)
    (Inherited from System.Windows.Forms.MouseEventArgs)
    Gets the zero-based row index of the cell.  
    (Inherited from System.Windows.Forms.MouseEventArgs)
    (Inherited from System.Windows.Forms.MouseEventArgs)
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also