Skip to main content
A newer version of this page is available. .

XtraReport.ScriptsSource Property

Specifies the report scripts.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v20.2.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.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 snippets (auto-collected from DevExpress Examples) contain references 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