[]
Gets or sets the file path and name of the transformation file applied to exported reports.
public string DataTransform { get; set; }
Type | Description |
---|---|
string | A string value indicating the file path and name of the transformation file. |
The file path can be a full path (e.g. "/xsl/xfrm.xsl"), or a relative path (e.g. "xfrm.xsl").
Report report = new Report();
report.DataTransform = "/xsl/transform.xsl";