IReportManagerServiceExtensions.UpdateReport(IReportManagerService, ReportInfo) Method
Static extension method that saves changes for the specified report.
Namespace: DevExpress.Xpf.Reports.UserDesigner.Extensions
Assembly: DevExpress.Xpf.ReportDesigner.v24.1.dll
NuGet Package: DevExpress.Wpf.Reporting
Declaration
Parameters
Name | Type | Description |
---|---|---|
self | IReportManagerService | The type utilized by the static extension method. |
info | ReportInfo | An object specifying the report. |
Remarks
To modify an existing report and save your changes, call the UpdateReport method.
public void CreateNewReport() {
XtraReport report = ...;
ReportInfo info = ReportManagerService.SaveReport(report);
info.Name = "Newly Added Report";
ReportManagerService.UpdateReport(info);
}
See Also