ObjectDataSourceUIHelper.EditConstructor<TModel>(ObjectDataSource, EditConstructorContext, Action<IWizardCustomization<TModel>>) Method
Invokes the Configure Constructor Settings dialog with the specified settings.
Namespace: DevExpress.DataAccess.UI.ObjectBinding
Assembly: DevExpress.DataAccess.v25.1.UI.dll
NuGet Package: DevExpress.DataAccess.UI
Declaration
public static bool EditConstructor<TModel>(
this ObjectDataSource objectDataSource,
EditConstructorContext context,
Action<IWizardCustomization<TModel>> customizeWizard
)
where TModel : class, IObjectDataSourceModel, new()
Parameters
| Name | Type | Description |
|---|---|---|
| objectDataSource | ObjectDataSource | An ObjectDataSource. |
| context | EditConstructorContext | An EditConstructorContext 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