New to Telerik ReportingStart a free 30-day trial

Represents the main section of a Report. It is printed once for every record in the data source of the report.

Definition

Constructors

C#
public DetailSection()

Properties

Gets or sets a value that specifies how many columns are present in the DetailSection of the report.

C#
[Browsable(false)]
[Obsolete("Telerik.Reporting.DetailSection.ColumnCount is now obsolete. Please use Telerik.Reporting.Report.PageSettings.ColumnCount property.", true)]
public int ColumnCount { get; set; }
Property Value:

An integer value specifying the number of columns. The value should be equal to or greater than 1. The default is 1.

Remarks:

Column widths are calculated based on the following rule: DetailWidth = ColumnWidth * ColumnCount + ColumSpacing * (ColumnCount - 1)

Multi-column reports are primarily used for printing labels.

Gets or sets a value indicating the space in Units between two adjacent columns.

C#
[Browsable(false)]
[Obsolete("Telerik.Reporting.DetailSection.ColumnSpacing is now obsolete. Please use Telerik.Reporting.Report.PageSettings.ColumnSpacing property.", true)]
public Unit ColumnSpacing { get; set; }
Property Value:

A Unit value specifying the space between two adjacent columns. The value should be a non-negative Unit. The default is Zero

Remarks:

This property should be used when there should be some blank space left between adjacent columns.