Released Method (FlexDividedBox)

Action

Dispatched when the user releases a divider.

The dividerRelease event is dispatched after the dividerDrag events, but before the container's children are resized. The divider's x and y properties are not updated until after this event is triggered. As a result, a call to hDividerBox.getDividerAt(0).x will return the value of the original x position of the first divider. If you want the position of the divider after the move, you can access it when the DividerBox's updateComplete event has been triggered.

Syntax

dividedBox.Released(dividerIndex, delta)
Variable Description
dividerIndex Contains the zero-based index of the divider being dragged. The leftmost or topmost divider has a dividerIndex of 0. Integer.
delta Contains the number of pixels that the divider has been dragged. Positive numbers represent a drag toward the right or bottom, negative numbers toward the left or top. Double.