Gets or sets the number of detail records to render per page or group.

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

Syntax

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

Remarks

This is useful when printing forms that must have a specific number of rows.

If the number of records is greater than the value specified, group or page breaks are added to limit the number of records rendered in each group of detail sections.

If the number of detail records is smaller than the value specified, blank records are added so the group of detail sections has the specified number of records.

If this property is set to zero (the default value), then it has no effect.

See Also