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.v21.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();
See Also