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