Back to Devexpress

ReportGalleryDirectoryExtension Class

xtrareports-devexpress-dot-xtrareports-dot-extensions-df073ea4.md

latest2.8 KB
Original Source

ReportGalleryDirectoryExtension Class

Enables you to provide a custom file storage for the Report Gallery in WinForms and WPF applications.

Namespace : DevExpress.XtraReports.Extensions

Assembly : DevExpress.XtraReports.v25.2.dll

NuGet Package : DevExpress.Reporting.Core

Declaration

csharp
public class ReportGalleryDirectoryExtension :
    ReportGalleryExtension
vb
Public Class ReportGalleryDirectoryExtension
    Inherits ReportGalleryExtension

Remarks

The Report Gallery stores templates in the %localappdata%\Developer Express Inc\XtraReports Suite\ReportGallery.xml file.

You can use the ReportGalleryDirectoryExtension class to provide a custom file storage. This class is inherited from the abstract ReportGalleryExtension class.

Do the following to store the Report Gallery’s templates in another file:

  1. Create a new ReportGalleryDirectoryExtension class instance and pass the full file path as the constructor parameter.
  2. Pass this instance to the static ReportGalleryExtension.RegisterExtensionGlobal method.

The code below demonstrates how to store templates in the directory that contains the application’s executable file.

  • WinForms

  • WPF

See the following topics for more information:

Inheritance

Object ReportGalleryExtension ReportGalleryDirectoryExtension

See Also

ReportGalleryDirectoryExtension Members

ReportGalleryExtension

Report Gallery

DevExpress.XtraReports.Extensions Namespace