Calculates a value of dimension specified by the LengthExp object. (dimension is an expression).

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

Syntax

C#
protected virtual void CalcLengthExp(
	RefDim dim,
	LengthExp length,
	bool customObjectDimension,
	out PageAreaBase pageArea,
	out double value
)
Visual Basic
Protected Overridable Sub CalcLengthExp ( _
	dim As RefDim, _
	length As LengthExp, _
	customObjectDimension As Boolean, _
	<OutAttribute> ByRef pageArea As PageAreaBase, _
	<OutAttribute> ByRef value As Double _
)

Parameters

dim
Type: RefDim
Dimension to calculate.
length
Type: LengthExp
LengthExp object defining a value of dimension.
customObjectDimension
Type: System..::..Boolean
Indicates that the custom object dimension is resolved, coordinate of point for RenderLine, width of column for RenderTable etc.
pageArea
Type: PageAreaBase%
Contains PageAreaBase object on exit.
value
Type: System..::..Double%
Contains value of coordinate or size on exit.

Return Value

true if no error occurs, false otherwise.

See Also