Sub OnControlResize(Sender: Object; Args: IPositionEventArgs);
Begin
//set of operators;
End Sub OnControlResize;
Sender. Parameter that returns the component that has generated the event.
Args. Parameter that enables the user to determine event parameters.
The OnControlResize event occurs when the component is resized.
New values of width and height of the component can be received using the properties of the argument of the Width and Height event.
See also: