Interface IReportDocument
Represents a report document.
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public interface IReportDocument : IComponent, IDisposable
Properties
DocumentName
Gets or sets the name of the document.
Declaration
string DocumentName { get; set; }
Property Value
System.String
|
PageSettings
Gets or sets the page setting for the document.
Declaration
[Obsolete("Please use instead the Report.PageSettings property.")]
PageSettings PageSettings { get; set; }
Property Value
PageSettings
|
ReportParameters
Gets the parameters for the document.
Declaration
[Obsolete("Please use instead the ReportSource.Parameters.")]
IEnumerable<IReportParameter> ReportParameters { get; }
Property Value
System.Collections.Generic.IEnumerable<IReportParameter>
|
Reports
Gets the reports contained in the document.
Declaration
[Obsolete("Please use the ReportSources property instead.")]
IEnumerable<Report> Reports { get; }
Property Value
System.Collections.Generic.IEnumerable<Report>
|
ReportSources
Gets the collection of report sources take part in this ReportBook.
Declaration
IEnumerable<ReportSource> ReportSources { get; }
Property Value
System.Collections.Generic.IEnumerable<ReportSource>
|