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


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

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

    PropertyDescription
    Gets a value indicating the column index of the cell that the event occurs for.  
    Gets a value indicating the row index of the cell that the event occurs for.  
    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