IMultiQueryConfigureParametersPageView.Initialize(IEnumerable<IQueryParameter>, Dictionary<String, Boolean>, Func<PreviewData>, Boolean, Boolean) Method
If implemented, initializes a wizard page with the specified settings.
Namespace: DevExpress.DataAccess.Wizard.Views
Assembly: DevExpress.DataAccess.v24.1.dll
NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap
Declaration
void Initialize(
IEnumerable<IQueryParameter> parameters,
Dictionary<string, bool> queriesToDisplay,
Func<PreviewData> getPreviewDataFunc,
bool fixedParameters,
bool legacyExpressionEditor
)
Parameters
Name | Type | Description |
---|---|---|
parameters | IEnumerable<IQueryParameter> | A collection of IQueryParameter objects. |
queriesToDisplay | Dictionary<String, Boolean> | A dictionary, specifying the queries available on this wizard page. |
getPreviewDataFunc | Func<PreviewData> | A function, specifying the required PreviewData object. |
fixedParameters | Boolean | A Boolean value, specifying whether or not an end-user is allowed to edit parameters on this wizard page. |
legacyExpressionEditor | Boolean | true, to switch to an older version of the Expression Editor that does not support intelligent code completion; otherwise, false. |
See Also