Skip to main content
A newer version of this page is available. .

ReportPrintOptions.DetailCountAtDesignTime Property

Specifies how many times the Detail band is printed when a report is being previewed at design time.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.1.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Core

Declaration

[DefaultValue(0)]
public int DetailCountAtDesignTime { get; set; }

Property Value

Type Default Description
Int32 0

An integer value, specifying the number of detail records displayed in the report.

Property Paths

You can access this nested property as listed below:

Object Type Path to DetailCountAtDesignTime
XtraReportBase
.ReportPrintOptions .DetailCountAtDesignTime

Remarks

Use the DetailCountAtDesignTime property to preview reports that are bound to a lengthy data source at design time. When the report is sent to a printer, the DetailCountAtDesignTime property has no effect on the amount of records the report contains.

With the default zero value, all detail records are shown in preview.

To define how many times the Detail band should be printed at runtime, use the ReportPrintOptions.DetailCount and ReportPrintOptions.DetailCountOnEmptyDataSource properties.

To learn more, see Data Filtering Overview.

See Also