Skip to main content
A newer version of this page is available. .

ObjectDataSourceUIHelper.EditParameters<TModel>(ObjectDataSource, EditParametersContext, Action<IWizardCustomization<TModel>>) Method

Invokes a dialog that enables you to edit the parameters of an object data source.

Namespace: DevExpress.DataAccess.UI.ObjectBinding

Assembly: DevExpress.DataAccess.v19.1.UI.dll

Declaration

public static bool EditParameters<TModel>(
    this ObjectDataSource objectDataSource,
    EditParametersContext context,
    Action<IWizardCustomization<TModel>> customizeWizard
)
    where TModel : class, IObjectDataSourceModel, new()

Parameters

Name Type Description
objectDataSource ObjectDataSource

An ObjectDataSource.

context EditParametersContext

An EditParametersContext object.

customizeWizard Action<IWizardCustomization<TModel>>

A Action delegate of an object implementing the IWizardCustomization<TModel> interface.

Type Parameters

Name
TModel

Returns

Type Description
Boolean

true, if the dialog was closed by clicking the Finish button; otherwise, false.

See Also