DVXP TEdit.NET 3.0

TableEditor.GetEditControlValue Event

Used to retrieve a field value from an edit control. This can be a self-created control or a default control (TextBox, CheckBox or DropDownList) that has been created by the TableEditor. Therefore, this is a more powerful version of the FieldParse event.

[Visual Basic]
Public Event GetEditControlValue As GetEditControlValueEventHandler
[C#]
public event GetEditControlValueEventHandler GetEditControlValue;

Event Data

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

PropertyDescription
Col The colum of the field in the row to assign
EditControl Contains a reference to the control whose value should be assigned to e.Row[e.Col].
IsHandled Set this property to true if you have handled this event and the 's field has been assigned a value
Row The row that the field is in

See Also

TableEditor Class | DVXP.DXTableEditor Namespace