Gets the RenderArea contained in the current cell.

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

Syntax

C#
public RenderArea Area { get; }
Visual Basic
Public ReadOnly Property Area As RenderArea
	Get

Remarks

Getting this property checks the current value of the RenderObject property. If it is a RenderArea, it is returned.

Otherwise, a new RenderArea is created, assigned to RenderObject, and returned.

Note that properties from the old RenderObject are copied to the newly created RenderArea using the AssignFrom(RenderObject) method. In particular, this copies the style from the old object to the new one.

See Also