DVXP TEdit.NET 3.0

TableEditor.FieldParse Event

Fired when a text box field value must be parsed. Also see the GetEditControlValue event, that is not only fired for text box fields, but also for any other edit control.

[Visual Basic]
Public Event FieldParse As FieldParseEventHandler
[C#]
public event FieldParseEventHandler FieldParse;

Event Data

The event handler receives an argument of type FieldParseEventArgs containing data related to this event. The following FieldParseEventArgs properties provide information specific to this event.

PropertyDescription
Col The colum of the row to format
IsHandled Set this property to true if the text is parsed and the Row's column value is updated
Row The row that the field is in
Text The text for the field as provided by the user

See Also

TableEditor Class | DVXP.DXTableEditor Namespace