Represents a report source that loads a report document from a URI.
Namespace: Telerik.ReportingAssembly: Telerik.Reporting (in Telerik.Reporting.dll)
Syntax
| Visual Basic |
|---|
Public Class UriReportSource _
Inherits ReportSource |
Examples
The following example demonstrates how to create a
UriReportSource:
CopyC#
Telerik.Reporting.UriReportSource uriReportSource =
new Telerik.Reporting.UriReportSource();
uriReportSource.Uri = "SampleReport.trdx";
uriReportSource.Parameters.Add(new Telerik.Reporting.Parameter("OrderNumber", "SO43659"));
CopyVB.NET
Dim uriReportSource As New Telerik.Reporting.UriReportSource()
uriReportSource.Uri = "SampleReport.trdx"
uriReportSource.Parameters.Add(New Telerik.Reporting.Parameter("OrderNumber", "SO43659"))
Inheritance Hierarchy
Version Information
Supported in: 1.0.1
See Also