Represents a report source that allows a report document to be instantiated from an
AssemblyQualifiedName.
Namespace: Telerik.ReportingAssembly: Telerik.Reporting (in Telerik.Reporting.dll)
Syntax
| Visual Basic |
|---|
Public Class TypeReportSource _
Inherits ReportSource |
Examples
The following example shows how to create a
TypeReportSource:
CopyC#
Telerik.Reporting.TypeReportSource typeReportSource =
new Telerik.Reporting.TypeReportSource();
typeReportSource.TypeName = "Telerik.Reporting.Examples.CSharp.Invoice, CSharp.ReportLibrary";
typeReportSource.Parameters.Add(new Telerik.Reporting.Parameter("OrderNumber", "SO43659"));
CopyVB.NET
Dim typeReportSource As New Telerik.Reporting.TypeReportSource()
typeReportSource.TypeName = "Telerik.Reporting.Examples.VB.Invoice, VB.ReportLibrary"
typeReportSource.Parameters.Add(New Telerik.Reporting.Parameter("OrderNumber", "SO43659"))
Inheritance Hierarchy
Version Information
Supported in: 1.0.1
See Also