Sub OnControlResize(Sender: Object; Args: IPositionEventArgs);
Begin
//set of operators;
End Sub OnControlResize;
Sender. Parameters, that returns the component, generated an event.
Args. Parameter that allows to determine the event parameters.
The OnControlResize event occurs when a 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: