CriteriaCompilerAuxSettings(Boolean, CustomFunctionCollection, CustomAggregateCollection) Constructor
Initializes a new instance of the CriteriaCompilerAuxSettings class with specified settings.
Namespace: DevExpress.Data.Filtering
Assembly: DevExpress.Data.v26.1.dll
Declaration
public CriteriaCompilerAuxSettings(
bool caseSensitive,
CustomFunctionCollection additionalFunctions,
CustomAggregateCollection additionalAggregates
)
Parameters
| Name | Type | Description |
|---|---|---|
| caseSensitive | Boolean | A Boolean value that specifies whether criteria compilation is case-sensitive. This value is assigned to the CaseSensitive field. |
| additionalFunctions | CustomFunctionCollection | A collection of custom functions to use during criteria compilation. This collection is assigned to the AdditionalFunctions property. |
| additionalAggregates | CustomAggregateCollection | A collection of custom aggregates to use during criteria compilation. This collection is assigned to the AdditionalAggregates property. |
See Also