MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Report Class / DataTransform Property
Example

DataTransform Property (Report)
Gets or sets the file path and name of the transformation file applied to exported reports.
Syntax
'Declaration
 
Public Property DataTransform As String
 

Property Value

A System.String value indicating the file path and name of the transformation file.
Remarks
The file path can be a full path (e.g. "/xsl/xfrm.xsl"), or a relative path (e.g. "xfrm.xsl").
Example
Report report = new Report();
report.DataTransform = "/xsl/transform.xsl";
See Also