New to Telerik ReportingStart a free 30-day trial

Represents a report document.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
public interface IReportDocument

Derived Classes: ReportReportBook

Properties

Gets or sets the name of the document.

C#
string DocumentName { get; set; }

Gets or sets the page setting for the document.

C#
[Obsolete("Please use instead the Report.PageSettings property.")]
PageSettings PageSettings { get; set; }

Gets the parameters for the document.

C#
[Obsolete("Please use instead the ReportSource.Parameters.")]
IEnumerable<IReportParameter> ReportParameters { get; }

Reports

IEnumerable<Report>

Gets the reports contained in the document.

C#
[Obsolete("Please use the ReportSources property instead.")]
IEnumerable<Report> Reports { get; }

Gets the collection of report sources take part in this ReportBook.

C#
IEnumerable<ReportSource> ReportSources { get; }