IReportDocument
Interface
Represents a report document.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
C#
public interface IReportDocument
Derived Classes:
Properties
DocumentName
string
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; }
ReportParameters
IEnumerable<IReportParameter>
Gets the parameters for the document.
C#
[Obsolete("Please use instead the ReportSource.Parameters.")]
IEnumerable<IReportParameter> ReportParameters { get; }
Gets the reports contained in the document.
C#
[Obsolete("Please use the ReportSources property instead.")]
IEnumerable<Report> Reports { get; }
ReportSources
IEnumerable<ReportSource>
Gets the collection of report sources take part in this ReportBook.
C#
IEnumerable<ReportSource> ReportSources { get; }