ModuleDescription(String, String, String, Func<TModule, Object>) Constructor
Initializes a new instance of the ModuleDescription class.
Namespace: DevExpress.Mvvm.ViewModel
Assembly: DevExpress.Mvvm.v24.1.ViewModel.dll
NuGet Package: DevExpress.Scaffolding.Core
Declaration
public ModuleDescription(
string title,
string documentType,
string group,
Func<TModule, object> peekCollectionViewModelFactory = null
)
Parameters
Name | Type | Description |
---|---|---|
title | String | A navigation list entry display text. |
documentType | String | A string value that specifies the view type of corresponding document. |
group | String | A navigation list entry group name. |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
peekCollectionViewModelFactory | Func<TModule, Object> | null | An optional parameter that provides a function used to create a PeekCollectionViewModel that provides quick navigation between collection views. |
See Also