Nevron.UI.WinForm.Controls Namespace / NDataGridView Class / CellValidating Event


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

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the column index of the cell that needs to be validated.  
    Gets the formatted contents of the cell that needs to be validated.  
    Gets the row index of the cell that needs to be validated.  
    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