Skip to main content

XtraReport.ScriptsSource Property

Specifies the report scripts.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

[Browsable(false)]
[DefaultValue("")]
public string ScriptsSource { get; set; }

Property Value

Type Default Description
String String.Empty

A String value, storing the code of all report scripts.

Remarks

Use the ScriptsSource property to assign or access report scripts at runtime.

Before assigning the XtraReport.ScriptsSource in code, make sure to specify the XRControl.Name for each added report control. Otherwise, running the script will cause an exception, because the default control name is undefined.

The following code illustrates the correct approach.

XtraReport report = new XtraReport();
report.Bands.Add(new DetailBand());

XRLabel label1 = new XRLabel();
label1.Name = "label1";
report.Bands[0].Controls.Add(label1);

XRLabel label2 = new XRLabel();
label2.Name = "label2";
report.Bands[0].Controls.Add(label2);

this.ScriptsSource = "int i = 0;";

ReportPrintTool pt = new ReportPrintTool(report);
pt.ShowPreviewDialog();

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ScriptsSource property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also