ClassInstanceReportSource
This report source is used when you have a reference to an already instantiated report (Report instance). For better performance and compatibility use TypeReportSource. Represents a report source that contains a reference to an instance of IReportDocument.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
public class InstanceReportSource : ReportSource
Inheritance: objectReportSourceInstanceReportSource
Inherited Members
Constructors
InstanceReportSource()
Initializes a new instance of the InstanceReportSource class.
Declaration
public InstanceReportSource()
Properties
ReportDocument
Gets or sets the IReportDocument instance for the report source.
Declaration
public IReportDocument ReportDocument { get; set; }
Property Value
Methods
Equals(object)
Determines whether this instance and a specified object have the same value.
Declaration
public override bool Equals(object obj)
Parameters
obj
object
The object to compare with this instance.
Returns
bool
true if obj is an InstanceReportSource and its value is the same as this instance; otherwise, false.
Overrides
GetHashCode()
Returns the hash code for this InstanceReportSource.
Declaration
public override int GetHashCode()
Returns
int
A 32-bit signed integer hash code.
Overrides
ToString()
Returns a string that represents the current InstanceReportSource.
Declaration
public override string ToString()
Returns
string
A string that represents the ReportDocument of this InstanceReportSource, or an empty string if ReportDocument is null.
Overrides