Class XmlReportSource
Represents a report source that contains the XML markup of a report document.
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class XmlReportSource : ReportSource, IExpressionContainer, ICloneable
Examples
The following example shows how to create a XmlReportSource:
var xmlReportSource = new Telerik.Reporting.XmlReportSource();
// Specifying the XML markup of the report
xmlReportSource.Xml = @"
";
// Adding the initial parameter values
xmlReportSource.Parameters.Add(new Telerik.Reporting.Parameter("OrderNumber", "SO43659"));
Dim xmlReportSource As New Telerik.Reporting.XmlReportSource()
' Specifying the XML markup of the report
xmlReportSource.Xml = "" &
"" &
"" &
"" &
"" &
" " &
" " &
" " &
" " &
"" &
"" &
"" &
" " &
" " &
" " &
" " &
"" &
"" &
" " &
" " &
" " &
" "
' Adding the initial parameter values
xmlReportSource.Parameters.Add(New Telerik.Reporting.Parameter("OrderNumber", "SO43659"))
Constructors
XmlReportSource()
Properties
Xml
Gets or sets the XML markup of a IReportDocument.
Declaration
public string Xml { get; set; }
Property Value
System.String
|
Remarks
This property can accept an expression when the report source is used in a SubReport item or a NavigateToReportAction.
Methods
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
|
Returns
System.Boolean
|
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
System.Int32
|
Overrides
ToString()
Declaration
public override string ToString()
Returns
System.String
|