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

ReportStateEventArgs.ReportState Property

Gets the report’s state for the event handler.

Namespace: DevExpress.XtraReports.UserDesigner

Assembly: DevExpress.XtraReports.v19.1.Extensions.dll

NuGet Package: DevExpress.Win.Reporting

Declaration

public ReportState ReportState { get; }

Property Value

Type Description
ReportState

A ReportState value representing the report’s state for this event handler.

Available values:

Name Description
None

The report’s state is not specified.

Opening

The report is in the process of opening.

Opened

The report is open in the End-User Designer.

Changed

At least one component in the report has been modified.

Saved

The report has been saved to a file.

Closing

The report editing session is being closed.

Remarks

The report’s state is set once when a ReportStateEventHandler is invoked and the ReportStateEventArgs object is initialized. This property specifies the report’s state in the End-User Designer.

See Also