Sub OnControlMove(Sender: Object; Args: IPositionEventArgs);
Begin
//set of operators;
End Sub OnControlMove;
Sender. Parameter that returns the component that has generated the event.
Args. Parameter that enables the user to determine event parameters.
The OnControlMove event occurs when the component is moved.
The user can get new coordinates of the left upper corner of the component, using a property of the Point event argument.
See also: