Skip to main content

FavoritePropertyDirectoryExtension(String) Constructor

Initializes a new instance of the FavoritePropertyDirectoryExtension class with the specified full file path.

Namespace: DevExpress.XtraReports.Extensions

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public FavoritePropertyDirectoryExtension(
    string path
)

Parameters

Name Type Description
path String

A String value that specifies the full path to the file where favorite properties should be saved.

Remarks

The following code snippet demonstrates how to store the favorites list in the directory with the application’s executable file.

using System.Windows.Forms;
using System.IO;
using DevExpress.XtraReports.Extensions;

static class Program {
    static void Main() {
        // ...
        string path = Path.Combine(Application.StartupPath, "FavoriteProperties.xml");
        FavoritePropertyExtension.RegisterExtensionGlobal(new FavoritePropertyDirectoryExtension(path));
    }
}

See the following topics for more information:

See Also