Class InstanceReportSource
This report source is used when you have a reference to an already instantiated report
(Report instance). For better performance and compatibility
use Type
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class InstanceReportSource : ReportSource, IExpressionContainer, ICloneable
Examples
The following example shows how to create an Instance
var instanceReportSource = new Telerik.Reporting.InstanceReportSource();
// Assigning the Report object to the InstanceReportSource
instanceReportSource.ReportDocument = new Telerik.Reporting.Examples.CSharp.Invoice();
// Adding the initial parameter values
instanceReportSource.Parameters.Add(new Telerik.Reporting.Parameter("OrderNumber", "SO43659"));
Dim instanceReportSource As New Telerik.Reporting.InstanceReportSource()
' Assigning the Report object to the InstanceReportSource
instanceReportSource.ReportDocument = New Invoice()
' Adding the initial parameter values
instanceReportSource.Parameters.Add(New Telerik.Reporting.Parameter("OrderNumber", "SO43659"))
Constructors
InstanceReportSource()
Initializes a new instance of the Instance
Declaration
public InstanceReportSource()
Properties
ReportDocument
Gets or sets the IReport
Declaration
public IReportDocument ReportDocument { get; set; }
Property Value
Methods
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
System.
|
Returns
System.
|
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
System.
|
Overrides
ToString()
Declaration
public override string ToString()
Returns
System.
|