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


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

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

    PropertyDescription
    Gets the column index of the cell data that requires parsing.  
    (Inherited from System.Windows.Forms.ConvertEventArgs)
    Gets or sets the style applied to the edited cell.  
    Gets or sets a value indicating whether a cell's value has been successfully parsed.  
    Gets the row index of the cell that requires parsing.  
    (Inherited from System.Windows.Forms.ConvertEventArgs)
    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