Gets or sets the starting outline level for the groups in this report.

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

Syntax

C#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
[BrowsableAttribute(true)]
[DefaultValueAttribute()]
public int OutlineRootLevel { get; set; }
Visual Basic
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _
<BrowsableAttribute(True)> _
<DefaultValueAttribute()> _
Public Property OutlineRootLevel As Integer
	Get
	Set

Remarks

By default, C1Report creates an outline based on the report groups. The outline starts at level zero, and is visible in PDF versions of the report.

This property allows you to start the report at a custom level, which can be useful if you are rendering multiple reports into a larger document (using C1PrintDocument for example).

You can set this property to -1 to suppress the outline.

The default value for this property is 0.

See Also