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


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

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the column index of the cell that the event occurs for.  
    Gets 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