DVXP TEdit.NET 3.0

TableEditor.SetEditControlValue Event

Used to assign a field value to 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.

[Visual Basic]
Public Event SetEditControlValue As SetEditControlValueEventHandler
[C#]
public event SetEditControlValueEventHandler SetEditControlValue;

Event Data

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

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

See Also

TableEditor Class | DVXP.DXTableEditor Namespace