Skip to main content

XRDesignPanel.ReportStateChanged Event

Occurs when the XRDesignPanel.ReportState property has been changed.

Namespace: DevExpress.XtraReports.UserDesigner

Assembly: DevExpress.XtraReports.v23.2.Extensions.dll

NuGet Package: DevExpress.Win.Reporting

Declaration

public event ReportStateEventHandler ReportStateChanged

Event Data

The ReportStateChanged event's data class is ReportStateEventArgs. The following properties provide information specific to this event:

Property Description
ReportState Gets the report’s state for the event handler.

Remarks

This event is raised when the state of the report currently being edited in the Design Panel has been changed. This report can be accessed via the XRDesignPanel.Report property. This can occur, for instance, when a report is loaded into the End-User Designer, or when it has been saved. All the report states available are listed in the ReportState enumeration.

Note

In most cases, you don’t need to manually handle the ReportStateChanged event, because this is done automatically.

See Also