Specifies whether the report should be rendered as a single continuous document or broken up into pages.

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

Syntax

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

Remarks

If you set the Paged property to true, the report will be broken up into pages, rendered one at a time on the client. In this case, you should either set the Visible property to true or provide a custom navigation bar yourself, so the user an browse through the pages to see the entire report.

The default value for this property is True.

See Also