Specifies whether the report control should have scrollbars or autosize to fit its contents.

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

Syntax

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

Remarks

By default, the report will be rendered within the bounds of the control, and scrollbars will be added so the user can see the entire contents of the report. If you set the Scrollable property to false, the control will automatically resize itself on the page to fit its contents.

The default value for this property is True.

See Also