DetailSection
Represents the main section of a Report. It is printed once for every record in the data source of the report.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
[ToolboxBitmap(typeof(DetailSection), "Resources.Detail.bmp")]
public class DetailSection : ReportSection, IToggleVisibilityTarget, IActionTarget
Inheritance: objectReportObjectReportItemBaseReportSectionBaseReportSectionDetailSection...
Implements:
Inherited Members
Constructors
public DetailSection()
Properties
ColumnCount
int
Gets or sets a value that specifies how many columns are present in the DetailSection of the report.
[Browsable(false)]
[Obsolete("Telerik.Reporting.DetailSection.ColumnCount is now obsolete. Please use Telerik.Reporting.Report.PageSettings.ColumnCount property.", true)]
public int ColumnCount { get; set; }
An integer value specifying the number of columns. The value should be equal to or greater than 1. The default is 1.
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.
[Browsable(false)]
[Obsolete("Telerik.Reporting.DetailSection.ColumnSpacing is now obsolete. Please use Telerik.Reporting.Report.PageSettings.ColumnSpacing property.", true)]
public Unit ColumnSpacing { get; set; }
A Unit value specifying the space between two adjacent columns. The value should be a non-negative Unit. The default is Zero
This property should be used when there should be some blank space left between adjacent columns.