Sub TabSheetBoxOnAfterEdit(Sender: Object; Args: ITabCellAfterEditEventArgs);
Begin
//set of operators
End Sub TabSheetBoxOnAfterEdit;
Sender is a parameter indicating the component, in which the event has occurred.
Args is a parameter which allows to define the cell, in which the event has occurred.
The OnAfterEdit event occurs after table cell editing.
Executing the example requires this procedure is set as the OnAfterEdit event handler for the TabSheetBox component with the TabSheetBox1 identifier.
Sub TabSheetBox1OnAfterEdit(Sender: Object; Args: ITabCellAfterEditEventArgs);
Var
b: Boolean
Begin
If Args.Changed Then
b:="Changed";
Else
b:="Don’t changed";
End If;
End Sub TabSheetBox1OnAfterEdit;
After executing the event the variable «b» will contain «Changed», if the contents of the edited cell has been changed.
See also: