You are here: Start » FIL.NET » Function Reference » Basic » Box » FIL.ResizeBox

FIL.ResizeBox

Changes the dimensions of a box.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void ResizeBox
(
	FilNet.Box inBox,
	FilNet.Anchor2D inAnchor,
	int? inNewWidth,
	int? inNewHeight,
	out FilNet.Box outBox
)

Parameters

Name Type Range Default Description
inBoxFilNet.BoxInput box.
inAnchorFilNet.Anchor2DTopLeftPoint of the box which position will not change. Default value: TopLeft.
inNewWidthint?<0, INF>Target width of the box. Default value: ftl::NIL.
inNewHeightint?<0, INF>Target height of the box. Default value: ftl::NIL.
outBoxFilNet.BoxResized box.

Description

The operation changes dimensions of input Box to (inNewWidth, inNewHeight).

See also