FavoritePropertyDirectoryExtension(String) Constructor
Initializes a new instance of the FavoritePropertyDirectoryExtension class with the specified full file path.
Namespace: DevExpress.XtraReports.Extensions
Assembly: DevExpress.XtraReports.v24.1.dll
NuGet Package: DevExpress.Reporting.Core
Declaration
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:
- WinForms: Use Favorite Properties in the End-User Report Designer
- WPF: Use Favorite Properties in the Report Designer
See Also