Specifies whether the component should render Html reports using TABLE instead of DIV elements.

Namespace:  C1.Web.C1WebReport
Assembly:  C1.Web.C1WebReport.2 (in C1.Web.C1WebReport.2.dll)

Syntax

C#
[DefaultValueAttribute(false)]
public bool UseTableElements { get; set; }
Visual Basic (Declaration)
<DefaultValueAttribute(False)> _
Public Property UseTableElements As Boolean
	Get
	Set

Remarks

By default, C1WebReport generates Html reports using absolutely-positioned DIV elements. You can use this property to generate Html reports based on TABLE tags instead.

TABLE-based reports don't use absolute positioning, so the resulting layout is usually less accurate than the traditional DIV-based reports. On the other hand, they are easier to modify in Html editors and offer better clipboard support (you can copy parts of a report and paste them into Excel for example).

The default value for this property is False.

See Also