ExtractDataSourceUIHelper.EditExtractOptions<TModel>(DashboardExtractDataSource, EditExtractOptionsContext, Action<IWizardCustomization<TModel>>) Method
Runs the Data Source Wizard for the Extract Data Source.
Namespace: DevExpress.DashboardWin
Assembly: DevExpress.Dashboard.v24.1.Win.dll
NuGet Package: DevExpress.Win.Dashboard
Declaration
public static bool EditExtractOptions<TModel>(
this DashboardExtractDataSource dataSource,
EditExtractOptionsContext context,
Action<IWizardCustomization<TModel>> CustomizeDataSourceWizard
)
where TModel : class, IExtractDataSourceModel, new()
Parameters
Name | Type | Description |
---|---|---|
dataSource | DashboardExtractDataSource | The Extract Data Source to edit by the Wizard. |
context | EditExtractOptionsContext | Provides access to objects, values and services required to run the Wizard. |
CustomizeDataSourceWizard | Action<IWizardCustomization<TModel>> | An action that customizes the Wizard before it is run. |
Type Parameters
Name | Description |
---|---|
TModel | A DevExpress.DataAccess.Wizard.Model.DataSourceModel type that is the data source type. |
Returns
Type | Description |
---|---|
Boolean | True, if the data source is successfully modified; otherwise, false. |
See Also