ResizeBox_Delta
Changes the dimensions of a box by adding some values.
Syntax
C++
Python
def ResizeBox_Delta( inBox: Box, /, *, inAnchor: Anchor2D = Anchor2D.TopLeft, inWidthDelta: int = 0, inHeightDelta: int = 0 ) -> outBox: Box
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inBox | Box | Input box | |
![]() |
inAnchor | Anchor2D | Anchor2D.TopLeft | Point of the box which position will not change |
![]() |
inWidthDelta | int | 0 | Value added to width of the box |
![]() |
inHeightDelta | int | 0 | Value added to height of the box |
![]() |
outBox | Box | Resized box |


