CreateCustomReportDesignRepositoryItemEventArgs.CriteriaString Property
Specifies the criteria that filters the collection of report parameter objects.
Namespace: DevExpress.ExpressApp.ReportsV2.Win
Assembly: DevExpress.ExpressApp.ReportsV2.Win.v24.1.dll
NuGet Package: DevExpress.ExpressApp.ReportsV2.Win
Declaration
Property Value
Type | Description |
---|---|
String | The criteria that filters the collection of report parameter objects. |
Remarks
The following example demonstrates how to set this property:
File:
MySolution.Win\WinModule.cs in solutions without the WinForms-specific module project.
MySolution.Module.Win\WinModule.cs(.vb) in solutions with the WinForms-specific module project.
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.ReportsV2.Win;
using DevExpress.Persistent.Base.ReportsV2;
// ...
public sealed partial class MySolutionWindowsFormsModule : ModuleBase {
// ...
public MySolutionWindowsFormsModule() {
InitializeComponent();
ReportsWindowsFormsModuleV2.CreateCustomReportDesignRepositoryItem +=
ReportsWindowsFormsModuleV2_CreateCustomReportDesignRepositoryItem;
}
private void ReportsWindowsFormsModuleV2_CreateCustomReportDesignRepositoryItem(object sender,
CreateCustomReportDesignRepositoryItemEventArgs e) {
e.CriteriaString = "[MyProperty] = True";
}
}
The image below demonstrates the result:
Refer to the following help topic for information on other techniques you can use to filter report parameter objects: How to: Filter a Report Parameter's Lookup.