Class DetailSection
Represents the main section of a Report. It is printed once for every record in the data source of the report.
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class DetailSection : ReportSection, IReportItem, IComponent, IDisposable, IToggleVisibilityTarget, IActionTarget, IDesignTimeStyleEditable, INamedObject, IDesignTimeSelectable
Remarks
The Detail section appears below PageHeaderSection and ReportHeaderSection sections and above PageFooterSection and ReportFooterSection sections.
Constructors
DetailSection()
Declaration
public DetailSection()
Properties
ColumnCount
Gets or sets a value that specifies how many columns are present in the DetailSection of the report.
Declaration
[Obsolete("Telerik.Reporting.DetailSection.ColumnCount is now obsolete. Please use Telerik.Reporting.Report.PageSettings.ColumnCount property.", true)]
public int ColumnCount { get; set; }
Property Value
System.Int32
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.
ColumnSpacing
Gets or sets a value indicating the space in Units between two adjacent columns.
Declaration
[Obsolete("Telerik.Reporting.DetailSection.ColumnSpacing is now obsolete. Please use Telerik.Reporting.Report.PageSettings.ColumnSpacing property.", true)]
public Unit ColumnSpacing { get; set; }
Property Value
Unit
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.