Represents a report source that contains a reference to an instance of
IReportDocument.
Namespace: Telerik.ReportingAssembly: Telerik.Reporting (in Telerik.Reporting.dll)
Syntax
| Visual Basic |
|---|
Public Class InstanceReportSource _
Inherits ReportSource |
Examples
The following example shows how to create an
InstanceReportSource:
CopyC#
Telerik.Reporting.InstanceReportSource instanceReportSource =
new Telerik.Reporting.InstanceReportSource();
instanceReportSource.ReportDocument = new Telerik.Reporting.Examples.CSharp.Invoice();
instanceReportSource.Parameters.Add(new Telerik.Reporting.Parameter("OrderNumber", "SO43659"));
CopyVB.NET
Dim instanceReportSource As New Telerik.Reporting.InstanceReportSource()
instanceReportSource.ReportDocument = New Invoice()
instanceReportSource.Parameters.Add(New Telerik.Reporting.Parameter("OrderNumber", "SO43659"))
Inheritance Hierarchy
See Also