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
Input value inBox Box Input box
Input value inAnchor Anchor2D Anchor2D.TopLeft Point of the box which position will not change
Input value inWidthDelta int 0 Value added to width of the box
Input value inHeightDelta int 0 Value added to height of the box
Output value outBox Box Resized box