Reporting

Represents a report source that contains a reference to an instance of IReportDocument.

Namespace: Telerik.Reporting
Assembly: Telerik.Reporting (in Telerik.Reporting.dll)

Syntax

C#
public class InstanceReportSource : ReportSource
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();

// 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"));
CopyVB.NET
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"))

Inheritance Hierarchy

System..::..Object
  Telerik.Reporting..::..ReportSource
    Telerik.Reporting..::..InstanceReportSource

See Also