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

In This Topic
    DataTransform Property (Report)
    In This Topic
    Gets or sets the file path and name of the transformation file applied to exported reports.
    Syntax
    'Declaration
     
    Public Property DataTransform As String
    public string DataTransform {get; set;}

    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