$resizeMove

the method is called when the user drags the "resize" handle

void $resizeMove(object pos);
posobjectthe top (vertical resizing) or left (horizontal resizing) relative position of the handle (relative to the parent container)
Details

Two properties of the pos parameter:

  • x - relative horizontal position;
  • y - relative vertical position.

The method is used in the inner logic and is not intended for direct use.

Back to top