$resizeEnd

the method is called when the user ends dragging the "resize" handle (releases the mouse button)

void $resizeEnd(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:

  • mx - relative horizontal position;
  • my - relative vertical position.

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

Back to top