Called when the resolved sizes of the object should be changed, for example when resolving of table is finished and height of all objects in a row is set to the same value. Object may ignore this changing and not change self size. This method is called only for child objects, so x and y are relative to the top left corner of the parent.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
protected internal virtual void ChangeResolvedDimensions(
	double x,
	double y,
	double width,
	double height
)
Visual Basic
Protected Friend Overridable Sub ChangeResolvedDimensions ( _
	x As Double, _
	y As Double, _
	width As Double, _
	height As Double _
)

Parameters

x
Type: System..::..Double
New left coordinate of the fragment.
y
Type: System..::..Double
New top coordinate of the fragment.
width
Type: System..::..Double
New width of the fragment.
height
Type: System..::..Double
New height of the fragment.

See Also